1
0
mirror of https://github.com/nextcloud/talk-android synced 2025-07-12 23:34:31 +01:00

Merge pull request from nextcloud/bugfix/noid/fix-joined-on-another-device

Fix the check if user joined on another device
This commit is contained in:
Marcel Hibbe 2021-07-09 21:53:07 +02:00 committed by GitHub
commit 9f8e9b2f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -326,7 +326,7 @@ class MagicFirebaseMessagingService : FirebaseMessagingService() {
override fun onNext(participantsOverall: ParticipantsOverall) { override fun onNext(participantsOverall: ParticipantsOverall) {
val participantList: List<Participant> = participantsOverall.ocs.data val participantList: List<Participant> = participantsOverall.ocs.data
hasParticipantsInCall = participantList.isNotEmpty() hasParticipantsInCall = participantList.isNotEmpty()
if (!hasParticipantsInCall) { if (hasParticipantsInCall) {
for (participant in participantList) { for (participant in participantList) {
if (participant.userId == signatureVerification.userEntity.userId) { if (participant.userId == signatureVerification.userEntity.userId) {
inCallOnDifferentDevice = true inCallOnDifferentDevice = true