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