From 94ebade4ed57842ac6ed3ffdbc885c15b8109b39 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Thu, 8 Jun 2017 16:51:24 +0200 Subject: [PATCH] fix(ui/modules/Linphone/Notifications/NotificationReceivedFileMessage): open file on click, not folder --- .../Linphone/Notifications/NotificationReceivedFileMessage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml index 698fb55d2..bbf238e94 100644 --- a/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml +++ b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml @@ -71,7 +71,7 @@ Notification { hoverEnabled: true onClicked: notification._close(function () { - Qt.openUrlExternally(Utils.getUriFromSystemPath(Utils.dirname(notification._fileUri))) + Qt.openUrlExternally(Utils.getUriFromSystemPath(notification._fileUri)) }) } }