chore: ignore stale call checking for archived rooms
This commit is contained in:
parent
6510c9728c
commit
d8d111b1b4
|
|
@ -142,7 +142,9 @@ class Room {
|
|||
setState(state);
|
||||
}
|
||||
}
|
||||
startStaleCallsChecker(id);
|
||||
if (!isArchived) {
|
||||
startStaleCallsChecker(id);
|
||||
}
|
||||
partial = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ extension GroupCallUtils on Room {
|
|||
staleGroupCallsTimer.remove(roomId);
|
||||
Logs().d('stopped stale group calls checker for room $id');
|
||||
} else {
|
||||
Logs().w('[VOIP] no stale call checker for room found');
|
||||
Logs().d('[VOIP] no stale call checker for room found');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue