diff --git a/src/Notifier.cpp b/src/Notifier.cpp index 752fbf9731..ec52f48f6a 100644 --- a/src/Notifier.cpp +++ b/src/Notifier.cpp @@ -29,7 +29,7 @@ void Notifier::Start() { void Notifier::Stop() { m_active = false; // send notification so the thread terminates - NotifyEntry("", nullptr, false); + m_cond.notify_one(); if (m_thread.joinable()) m_thread.join(); }