diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-29 20:38:14 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-29 20:38:19 +0300 |
commit | 12a21d5cdf92fcefe8283af5392d4c5358f900e7 (patch) | |
tree | 10b43c63a1ed6c56222860f77fc388c15663bcc0 /plugins/NewStory | |
parent | 35d047b7c37ce46c63f3c349220a594b45ec1a1c (diff) |
two atavisms with old chat engine formatting removed
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 dff781605f..d4e2cf5634 100644 --- a/plugins/NewStory/src/history_array.cpp +++ b/plugins/NewStory/src/history_array.cpp @@ -520,7 +520,7 @@ void HistoryArray::addChatEvent(NewstoryListData *pOwner, SESSION_INFO *si, cons if (!bTextUsed && lin->ptszText) {
if (!wszText.IsEmpty())
wszText.AppendChar(' ');
- wszText.Append(g_chatApi.RemoveFormatting(lin->ptszText));
+ wszText.Append(lin->ptszText);
}
p.wtext = wszText.Detach();
|