From a7b81ffe07208444ca89cb9f4c695cd7fb31168b Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Mon, 20 Jan 2014 18:46:29 +0100 Subject: [PATCH] fixed init of default backend on linux --- src/core/snore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/snore.cpp b/src/core/snore.cpp index 8e3ddc7..418eac6 100644 --- a/src/core/snore.cpp +++ b/src/core/snore.cpp @@ -209,7 +209,7 @@ bool SnoreCore::setPrimaryNotificationBackend() return true; } #elif defined(Q_OS_LINUX) - if( backends.contains("FreedesktopNotification_Backend")) + if( backends.contains("FreedesktopNotification")) { return setPrimaryNotificationBackend("FreedesktopNotification"); }