chore: reduce error logging level of groupCall is null

This commit is contained in:
td 2022-10-28 22:01:17 +05:30
parent aa03f5aa06
commit 6566bb8eeb
No known key found for this signature in database
GPG Key ID: F6D9E9BF14C7D103
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class VoIP {
final confId = event.content['conf_id']; final confId = event.content['conf_id'];
final groupCall = groupCalls[confId]; final groupCall = groupCalls[confId];
if (groupCall == null) { if (groupCall == null) {
Logs().e('[VOIP] onToDeviceEvent: groupCall is null.'); Logs().d('[VOIP] onToDeviceEvent: groupCall is null.');
return; return;
} }
final roomId = groupCall.room.id; final roomId = groupCall.room.id;