diff --git a/ts/receiver/configMessage.ts b/ts/receiver/configMessage.ts index 02d3293cd..b2283039b 100644 --- a/ts/receiver/configMessage.ts +++ b/ts/receiver/configMessage.ts @@ -62,9 +62,7 @@ async function handleGroupsAndContactsFromConfigMessage( (lastConfigTimestamp && lastConfigTimestamp < _.toNumber(envelope.timestamp)); if (!isNewerConfig) { - window?.log?.info( - 'Received outdated configuration message... Dropping message.' - ); + window?.log?.info('Received outdated configuration message... Dropping message.'); return; } diff --git a/ts/window.d.ts b/ts/window.d.ts index 85417105c..a075e8a5b 100644 --- a/ts/window.d.ts +++ b/ts/window.d.ts @@ -74,7 +74,5 @@ declare global { setStartInTray: (val: boolean) => Promise; getStartInTray: () => Promise; libsession: any; - getOpenGroupBlockList: () => Array; - openGroupBlockList: Array; } }