mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 12:09:45 +01:00
Fix automated app starting due to room invite
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
68df0a3c8e
commit
82170b77d7
@ -528,7 +528,7 @@ public class ChatController extends BaseController implements MessagesListAdapte
|
||||
messageInputView.getButton().setContentDescription(getResources()
|
||||
.getString(R.string.nc_description_send_message_button));
|
||||
|
||||
if (currentConversation.getRoomId() != null) {
|
||||
if (currentConversation != null && currentConversation.getRoomId() != null) {
|
||||
loadAvatarForStatusBar();
|
||||
checkLobbyState();
|
||||
}
|
||||
|
@ -615,7 +615,7 @@ public class NotificationWorker extends Worker {
|
||||
break;
|
||||
case "room":
|
||||
if (bundle.containsKey(BundleKeys.INSTANCE.getKEY_ROOM_TOKEN())) {
|
||||
showNotificationForCallWithNoPing(intent);
|
||||
showNotificationWithObjectData(intent);
|
||||
}
|
||||
break;
|
||||
case "chat":
|
||||
|
Loading…
Reference in New Issue
Block a user