diff --git a/linphone-app/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml b/linphone-app/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml index 80b0afb3e..dcd9d45e5 100644 --- a/linphone-app/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml +++ b/linphone-app/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml @@ -98,14 +98,14 @@ Notification { onClicked: notification._close(function () { AccountSettingsModel.setDefaultAccountFromSipAddress(notification.localAddress) + App.smartShowWindow(notification.notificationData.window) + notification.notificationData.window.setView('Conversations') var chatroom = notification.timelineModel.getChatRoomModel() console.debug("Load conversation from notification: "+chatroom) if(!notification.timelineModel.selected)// Check to avoid reloading notification.timelineModel.selected = true if(chatroom && notification.messageId) chatroom.displayMessageIdRequested(notification.messageId) - App.smartShowWindow(notification.notificationData.window) - notification.notificationData.window.setView('Conversations') }) } }