diff options
author | George Hazan <ghazan@miranda.im> | 2020-09-21 18:01:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-09-21 18:01:16 +0300 |
commit | 8e3dabf7d451f12ba421ec934a9603d035027736 (patch) | |
tree | 1f52ac990c3f34a356ea14c9a882c42744a0e13d /plugins/Msg_Export/src | |
parent | 73c1261a4fd2a7adfa496e054846c61167ce7fff (diff) |
fixes #2571 (MsgExport странно обрабатывает контакты с отключённых аккаунтов Message export bug)
Diffstat (limited to 'plugins/Msg_Export/src')
-rwxr-xr-x | plugins/Msg_Export/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp index 5a98f610c4..99e9a18df9 100755 --- a/plugins/Msg_Export/src/utils.cpp +++ b/plugins/Msg_Export/src/utils.cpp @@ -349,7 +349,7 @@ wstring GetFilePathFromUser(MCONTACT hContact) // Here we will try to avoid the (Unknown Contact) in cases where the protocol for
// this user has been removed.
- if (bNickUsed && (wcsstr(Clist_GetContactDisplayName(hContact), LPGENW("(Unknown Contact)")) != nullptr))
+ if (bNickUsed && (wcsstr(Clist_GetContactDisplayName(hContact), TranslateT("(Unknown Contact)")) != nullptr))
return sPrevFileName; // Then the filename must have changed from a correct path to one including the (Unknown Contact)
// file name has changed
|