Skip to content

Commit 0b97257

Browse files
committed
Notification flipped bool
1 parent fe6cdf8 commit 0b97257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notifications/NotificationHelper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ bool CNotificationHelper::SendMessageEx(
9898
const std::string &Sound,
9999
const bool bFromNotification)
100100
{
101-
bool bRet = (Priority != -100) ? false : true;
101+
bool bRet = (Priority == -100) ? false : true;
102102
#if defined WIN32
103103
//Make a system tray message
104104
ShowSystemTrayNotification(Subject.c_str());

0 commit comments

Comments
 (0)