mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +01:00
Fix a crashing bug
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
f677d95fe7
commit
9f15661273
@ -236,10 +236,12 @@ public class CallNotificationController extends BaseController {
|
|||||||
for (Room room : roomsOverall.getOcs().getData()) {
|
for (Room room : roomsOverall.getOcs().getData()) {
|
||||||
if (roomId.equals(room.getRoomId())) {
|
if (roomId.equals(room.getRoomId())) {
|
||||||
currentRoom = room;
|
currentRoom = room;
|
||||||
|
if (conversationNameTextView != null) {
|
||||||
conversationNameTextView.setText(currentRoom.getDisplayName());
|
conversationNameTextView.setText(currentRoom.getDisplayName());
|
||||||
loadAvatar();
|
loadAvatar();
|
||||||
checkIfAnyParticipantsRemainInRoom();
|
checkIfAnyParticipantsRemainInRoom();
|
||||||
showAnswerControls();
|
showAnswerControls();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user