From 78ae2b870dd88686099ab4ab072fac21487b9702 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Thu, 13 Aug 2015 08:39:31 +0000 Subject: db3x_mmap: fix for metacontacts in [14915] git-svn-id: http://svn.miranda-ng.org/main/trunk@14935 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db3x_mmap/src/dbevents.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'plugins/Db3x_mmap') diff --git a/plugins/Db3x_mmap/src/dbevents.cpp b/plugins/Db3x_mmap/src/dbevents.cpp index c42a0962ab..d118f6d3c2 100644 --- a/plugins/Db3x_mmap/src/dbevents.cpp +++ b/plugins/Db3x_mmap/src/dbevents.cpp @@ -35,6 +35,10 @@ STDMETHODIMP_(MEVENT) CDb3Mmap::AddEvent(MCONTACT contactID, DBEVENTINFO *dbei) if (dbei == NULL || dbei->cbSize != sizeof(DBEVENTINFO)) return 0; if (dbei->timestamp == 0) return 0; + DBEvent dbe; + dbe.signature = DBEVENT_SIGNATURE; + dbe.contactID = contactID; // store native or subcontact's id + MCONTACT contactNotifyID = contactID; DBCachedContact *ccSub = NULL; if (contactID != 0) { @@ -56,9 +60,6 @@ STDMETHODIMP_(MEVENT) CDb3Mmap::AddEvent(MCONTACT contactID, DBEVENTINFO *dbei) if (NotifyEventHooks(hEventFilterAddedEvent, contactNotifyID, (LPARAM)dbei)) return NULL; - DBEvent dbe; - dbe.signature = DBEVENT_SIGNATURE; - dbe.contactID = contactID; // store native or subcontact's id dbe.timestamp = dbei->timestamp; dbe.flags = dbei->flags; dbe.wEventType = dbei->eventType; -- cgit v1.2.3