From 83b362c178546907771caa6ff08eafa668087aa0 Mon Sep 17 00:00:00 2001 From: Zofia Abramowska Date: Thu, 6 Jul 2017 10:36:48 +0200 Subject: [PATCH] Properly set current event id Service side current event id wasn't set at all. Change-Id: Ic8a82e9d2954bb69dd8da6e86a0dd00222d94d7c --- src/notification-daemon/Logic.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notification-daemon/Logic.cpp b/src/notification-daemon/Logic.cpp index fa44785..c0841dd 100644 --- a/src/notification-daemon/Logic.cpp +++ b/src/notification-daemon/Logic.cpp @@ -186,6 +186,7 @@ void Logic::processEvents() { return; FdEvent fdEvent = std::move(m_pendingEvents.front()); + m_currentEvent = fdEvent.id; fdEvent.event->process(); } -- 2.7.4