Fix crash when trying to update a group call without an era id.

This commit is contained in:
Cody Henthorne
2023-01-25 16:41:27 -05:00
committed by Greyson Parrelli
parent 32dd227ab6
commit e0633180ef
3 changed files with 9 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ public class GroupCallUpdateSendJob extends BaseJob {
}
private GroupCallUpdateSendJob(@NonNull RecipientId recipientId,
@NonNull String eraId,
@Nullable String eraId,
@NonNull List<RecipientId> recipients,
int initialRecipientCount,
@NonNull Parameters parameters)

View File

@@ -361,7 +361,7 @@ private void processStateless(@NonNull Function1<WebRtcEphemeralState, WebRtcEph
}
});
} catch (IOException | VerificationFailedException | CallException e) {
Log.e(TAG, "error peeking from active conversation", e);
Log.i(TAG, "error peeking from active conversation", e);
}
});
}
@@ -389,7 +389,7 @@ private void processStateless(@NonNull Function1<WebRtcEphemeralState, WebRtcEph
members,
peekInfo -> receivedGroupCallPeekForRingingCheck(info, peekInfo));
} catch (IOException | VerificationFailedException | CallException e) {
Log.e(TAG, "error peeking for ringing check", e);
Log.i(TAG, "error peeking for ringing check", e);
}
});
}