diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-07 15:30:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-07 15:30:27 +0300 |
commit | 6984f16b63161b21ee76df0fb93ef39de4b925b1 (patch) | |
tree | 29893b1e619fb8fd970a3feac1dbaa8f0b890aa8 /plugins/Scriver | |
parent | fec1058c1cfc1d0d1459c7d030458608ae333c26 (diff) |
we don't have to restore unread events from blocked accounts
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/src/msgs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 13b4b28b8b..30632696d1 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -251,7 +251,7 @@ static void RestoreUnreadMessageAlerts(void) dbei.cbBlob = 0;
if (db_event_get(hDbEvent, &dbei))
continue;
- if ((dbei.flags & (DBEF_SENT | DBEF_READ)) || !DbEventIsMessageOrCustom(&dbei))
+ if (dbei.markedRead() || !DbEventIsMessageOrCustom(&dbei) || !Proto_GetBaseAccountName(hContact))
continue;
int windowAlreadyExists = Srmm_FindWindow(hContact) != nullptr;
|