diff options
author | George Hazan <george.hazan@gmail.com> | 2025-04-18 16:12:38 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-04-18 16:12:38 +0300 |
commit | 3b3dea953dc54158db9cb35378852175e55c669d (patch) | |
tree | 5cf71e6fa5e4be13b0158f0ded6a61bec17847fc /protocols/Teams/src/teams_utils.cpp | |
parent | 536b626a052525f226165f3834f4ea06c6a7ad11 (diff) |
Teams: new format of subscription request + massive code cleaning
Diffstat (limited to 'protocols/Teams/src/teams_utils.cpp')
-rw-r--r-- | protocols/Teams/src/teams_utils.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/protocols/Teams/src/teams_utils.cpp b/protocols/Teams/src/teams_utils.cpp index c409419054..8d158dfd4d 100644 --- a/protocols/Teams/src/teams_utils.cpp +++ b/protocols/Teams/src/teams_utils.cpp @@ -483,23 +483,6 @@ CMStringW CTeamsProto::RemoveHtml(const CMStringW &data, bool bCheckSS) } } - if (c == '(' && inSS) { - int iEnd = data.Find(')', i); - if (iEnd != -1) { - CMStringW ss(data.Mid(i + 1, iEnd - i - 1)); - uint32_t code = getMoodIndex(T2Utf(ss)); - if (code != -1) - m_iMood = code; - else if (1 == swscanf(ss, L"%x_", &code)) { - Utf32toUtf16(code, new_string); - m_wstrMoodEmoji = new_string; - } - - i = iEnd; - continue; - } - } - new_string.AppendChar(c); } |