fix: reject call on own device if you get a call reject

This commit is contained in:
td 2023-01-30 23:14:04 +05:30
parent 47a8e32c57
commit 448b61191a
No known key found for this signature in database
GPG Key ID: F6D9E9BF14C7D103
1 changed files with 0 additions and 4 deletions

View File

@ -344,10 +344,6 @@ class VoIP {
Future<void> onCallReject(
String roomId, String senderId, Map<String, dynamic> content) async {
if (senderId == client.userID) {
// Ignore messages to yourself.
return;
}
final String callId = content['call_id'];
Logs().d('Reject received for call ID $callId');