From a98c3d5d3a149445caee7e12f553cb6a6cbb1934 Mon Sep 17 00:00:00 2001 From: Anurag Shivarathri Date: Tue, 13 Sep 2022 14:05:50 +0530 Subject: [PATCH] Fix (#6642) --- app/actions/websocket/threads.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/actions/websocket/threads.ts b/app/actions/websocket/threads.ts index b695369f7..c3e7f119b 100644 --- a/app/actions/websocket/threads.ts +++ b/app/actions/websocket/threads.ts @@ -11,7 +11,7 @@ export async function handleThreadUpdatedEvent(serverUrl: string, msg: WebSocket // Mark it as following thread.is_following = true; - processReceivedThreads(serverUrl, [thread], teamId, true); + processReceivedThreads(serverUrl, [thread], teamId); } catch (error) { // Do nothing }