From f6181e552dd9f6f800f24c064ac1479bd6992f94 Mon Sep 17 00:00:00 2001 From: Variet Worker Date: Tue, 17 Mar 2026 13:20:00 +0900 Subject: [PATCH] fix(bot): ApprovalRequest missing conversation_id + timestamp in Hub path --- bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot.py b/bot.py index 996139f..d983f66 100644 --- a/bot.py +++ b/bot.py @@ -1003,8 +1003,10 @@ class GravityBot(commands.Bot): # Build approval request request = ApprovalRequest( request_id=request_id, + conversation_id=data.get("conversation_id", ""), command=data.get("command", ""), description=data.get("description", ""), + timestamp=data.get("timestamp", time.time()), project_name=project, step_type=data.get("step_type", ""), status=status,