cleanup console statements

This commit is contained in:
Half-Shot 2025-12-18 09:30:19 +00:00
parent 7f0306f490
commit 6638f2f4ba
2 changed files with 0 additions and 2 deletions

View File

@ -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 };
}

View File

@ -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,