From 087a44d91c92d80e257f527c6fe5522c8a487fdc Mon Sep 17 00:00:00 2001 From: Jacob Henry Date: Sun, 3 Mar 2019 20:34:55 -0500 Subject: [PATCH] Realized that only expirations actually got fixed. --- plugins/periodicals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/periodicals.py b/plugins/periodicals.py index 290310c..d99f743 100644 --- a/plugins/periodicals.py +++ b/plugins/periodicals.py @@ -187,7 +187,7 @@ class TestPassive(hooks.Passive): # Make our callbacks async def on_click(event: slack_util.Event, response: str): # Edit the message to show the result. - client.get_slack().edit_message(response, event.conversation.conversation_id, event.message.ts, None) + client.get_slack().edit_message(response, event.conversation.conversation_id, event.message.ts, []) def on_expire(): client.get_slack().edit_message("Timed out", "#botzone", msg_ts, [])