diff options
author | George Hazan <ghazan@miranda.im> | 2020-08-16 18:19:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-08-16 18:19:00 +0300 |
commit | cbae3129961119ea4415ec2643bb62f04be47dcf (patch) | |
tree | e96bdbbe0247f814898b13d494d8a1d5351ce4e0 /plugins/NewStory | |
parent | d11b65ef96075a0da05d88913c6bcea619a4c2f9 (diff) |
fixes #2538 (NewStory: add stickers support to message log and history)
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history_array.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_array.cpp b/plugins/NewStory/src/history_array.cpp index 33724bdff5..ecfc72caa0 100644 --- a/plugins/NewStory/src/history_array.cpp +++ b/plugins/NewStory/src/history_array.cpp @@ -49,7 +49,7 @@ bool Filter::check(ItemData *item) void ItemData::checkCreate(HWND hwnd) { if (data == nullptr) { - data = MTextCreateW(htuLog, ptrW(TplFormatString(getTemplate(), hContact, this))); + data = MTextCreateW(htuLog, Proto_GetBaseAccountName(hContact), ptrW(TplFormatString(getTemplate(), hContact, this))); MTextSetParent(data, hwnd); } } |