diff --git a/src/RoomNotifs.ts b/src/RoomNotifs.ts index ba354b828a..5d39b4f54b 100644 --- a/src/RoomNotifs.ts +++ b/src/RoomNotifs.ts @@ -254,7 +254,6 @@ export function determineUnreadState( return { symbol: null, count: 0, level: NotificationLevel.None, invited: false }; } - console.log("determineUnreadState", getUnsentMessages(room, threadId)); if (getUnsentMessages(room, threadId).length > 0) { return { symbol: "!", count: 1, level: NotificationLevel.Unsent, invited: false }; } diff --git a/src/stores/notifications/RoomNotificationState.ts b/src/stores/notifications/RoomNotificationState.ts index 9418e2c8fa..44a62b1307 100644 --- a/src/stores/notifications/RoomNotificationState.ts +++ b/src/stores/notifications/RoomNotificationState.ts @@ -141,7 +141,6 @@ export class RoomNotificationState extends NotificationState implements IDestroy private updateNotificationState(): void { const snapshot = this.snapshot(); - console.log(RoomNotifs.determineUnreadState(this.room, undefined, this.includeThreads)); const { level, symbol, count, invited } = RoomNotifs.determineUnreadState( this.room, undefined,