From af373148e3719eb9691d4aac15f3a4f9dd45a9d9 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 17 Oct 2025 11:06:22 +0200 Subject: [PATCH] Fix linphone.desktop file not created/updated on Linux --- Linphone/core/App.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Linphone/core/App.cpp b/Linphone/core/App.cpp index cb70a71f9..95a1afb61 100644 --- a/Linphone/core/App.cpp +++ b/Linphone/core/App.cpp @@ -319,6 +319,10 @@ App::App(int &argc, char *argv[]) }); mEventCountNotifier = new EventCountNotifier(this); mDateUpdateTimer.start(); + +#ifdef Q_OS_LINUX + exportDesktopFile(); +#endif } App::~App() {