diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-01 13:01:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-01 13:01:59 +0300 |
commit | 49f006c2eab275e98298df247686a161a5581ebd (patch) | |
tree | b9806ec059c634c742bb52e9980d5fa136f06e05 /plugins/HistoryPlusPlus | |
parent | 35aba3d91e39932517046ff84ab7d3e4ef0cf932 (diff) |
h++ doesn't mark messages with URLs as read
Diffstat (limited to 'plugins/HistoryPlusPlus')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_externalgrid.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_externalgrid.pas b/plugins/HistoryPlusPlus/hpp_externalgrid.pas index 9bb7190c38..58a5ffa7da 100644 --- a/plugins/HistoryPlusPlus/hpp_externalgrid.pas +++ b/plugins/HistoryPlusPlus/hpp_externalgrid.pas @@ -534,7 +534,7 @@ begin // tabSRMM still doesn't marks events read in case of hpp log is in use...
// if (FGridMode = gmIEView) and
if (mtIncoming in Item.MessageType) and (MessageTypesToDWord(Item.MessageType) and
- MessageTypesToDWord([mtMessage]) > 0) then
+ MessageTypesToDWord([mtMessage, mtUrl]) > 0) then
begin
if (not Item.IsRead) then
db_event_markRead(Items[Index].hContact, Items[Index].hDBEvent);
|