diff --git a/src/main/app/intercom.ts b/src/main/app/intercom.ts index 381b43d8..4fb3ee4f 100644 --- a/src/main/app/intercom.ts +++ b/src/main/app/intercom.ts @@ -113,7 +113,7 @@ export function handleWelcomeScreenModal() { } export function handleMentionNotification(event: IpcMainInvokeEvent, title: string, body: string, channelId: string, teamId: string, url: string, silent: boolean, soundName: string) { - log.debug('handleMentionNotification', {title, body, channelId, teamId, url, silent, soundName}); + log.debug('handleMentionNotification', {channelId, teamId, url, silent, soundName}); return NotificationManager.displayMention(title, body, channelId, teamId, url, silent, event.sender, soundName); } diff --git a/src/main/notifications/index.ts b/src/main/notifications/index.ts index 41a5d73b..8f5ced38 100644 --- a/src/main/notifications/index.ts +++ b/src/main/notifications/index.ts @@ -32,7 +32,7 @@ class NotificationManager { } public async displayMention(title: string, body: string, channelId: string, teamId: string, url: string, silent: boolean, webcontents: Electron.WebContents, soundName: string) { - log.debug('displayMention', {title, channelId, teamId, url, silent, soundName}); + log.debug('displayMention', {channelId, teamId, url, silent, soundName}); if (!Notification.isSupported()) { log.error('notification not supported');