From 2bf006184804104afe13bb11901c0d8674c3a1e2 Mon Sep 17 00:00:00 2001 From: Trygve Aaberge Date: Sat, 14 Oct 2023 21:42:28 +0200 Subject: Support adding and removing reactions --- slack/slack_conversation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slack/slack_conversation.py') diff --git a/slack/slack_conversation.py b/slack/slack_conversation.py index 652c8f2..2ac8f21 100644 --- a/slack/slack_conversation.py +++ b/slack/slack_conversation.py @@ -613,7 +613,7 @@ class SlackConversation(SlackBuffer): ) async def open_thread(self, thread_hash: str, switch: bool = False): - thread_ts = self.message_hashes.get_ts(thread_hash) + thread_ts = self.ts_from_hash(thread_hash) if thread_ts: thread_message = self.messages.get(thread_ts) if thread_message is None: -- cgit