diff --git a/ts/receiver/groups.ts b/ts/receiver/groups.ts index 620cc68f9..4c6c178d1 100644 --- a/ts/receiver/groups.ts +++ b/ts/receiver/groups.ts @@ -37,6 +37,11 @@ export async function preprocessGroupMessage( conversationId, 'group' ); + + if (conversation.isPublic()) { + // window.console.log('No need to preprocess public group chat messages'); + return; + } const GROUP_TYPES = SignalService.GroupContext.Type; if (shouldIgnoreBlockedGroup(group, source)) {