diff options
| author | George Hazan <george.hazan@gmail.com> | 2025-01-05 22:34:47 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2025-01-05 22:34:47 +0300 |
| commit | 5eb5e564b4d8d506470baa0b3f11814563cb5087 (patch) | |
| tree | d48a5e7783a27b59e959411fceb1d29611a3bed7 | |
| parent | 521cc2d8e239cca75e7c565f574e4573cb109429 (diff) | |
warning fix
| -rw-r--r-- | protocols/Steam/src/steam_chats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_chats.cpp b/protocols/Steam/src/steam_chats.cpp index 7d25507bde..8e956b33ff 100644 --- a/protocols/Steam/src/steam_chats.cpp +++ b/protocols/Steam/src/steam_chats.cpp @@ -191,7 +191,7 @@ void CSteamProto::OnLeftChat(const CChatRoomLeaveChatRoomGroupResponse&, const C if (!Contact::IsGroupChat(cc) || GetId(cc, DBKEY_STEAM_ID) != *pGroupId) continue; - CMStringW wszId(FORMAT, L"%lld_%lld", *pGroupId, getDword(cc, "ChatId")); + CMStringW wszId(FORMAT, L"%lld_%lld", *pGroupId, GetId(cc, "ChatId")); if (auto *si = Chat_Find(wszId, m_szModuleName)) Chat_Terminate(si); |
