diff options
author | George Hazan <george.hazan@gmail.com> | 2025-03-03 18:43:09 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-03-03 18:43:09 +0300 |
commit | c718ab514e2b6d4bb77d25477c9545758c20ae4b (patch) | |
tree | 8387716859022b3a89d59eb59e5fb060898f2d0d /protocols/Steam/src/main.cpp | |
parent | 7da217df01b90af80d9c87354f60c8cc1c1014a4 (diff) |
fixes #4905 (Steam: группа не удаляется из списка контактов при покидании её через сайт)
Diffstat (limited to 'protocols/Steam/src/main.cpp')
-rw-r--r-- | protocols/Steam/src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Steam/src/main.cpp b/protocols/Steam/src/main.cpp index 13a688ac4e..babfc1b747 100644 --- a/protocols/Steam/src/main.cpp +++ b/protocols/Steam/src/main.cpp @@ -178,6 +178,7 @@ void CMPlugin::InitSteamServices() serviceHandlers[DeleteChatMessage] = ServiceResponseHandler(&CSteamProto::OnDoNothing);
serviceHandlers[NotifyIncomingChatMessage] = ServiceResponseHandler(&CSteamProto::OnGetChatMessage);
serviceHandlers[NotifyModifiedChatMessage] = ServiceResponseHandler(&CSteamProto::OnDoNothing);
+ serviceHandlers[NotifyChatGroupUserStateChanged] = ServiceResponseHandler(&CSteamProto::OnDoNothing);
serviceHandlers[GetOwnAuthorizedDevices] = ServiceResponseHandler(&CSteamProto::OnGotDeviceList);
|