diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Steam/src/steam_polling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_polling.cpp b/protocols/Steam/src/steam_polling.cpp index cdfcfd797d..00c58ba145 100644 --- a/protocols/Steam/src/steam_polling.cpp +++ b/protocols/Steam/src/steam_polling.cpp @@ -51,7 +51,7 @@ void CSteamProto::ParsePollData(JSONNode *data) else if (!lstrcmpi(type, L"typing")) { // FIXME: Temporary solution for receivng too many duplicated typing events; should be reworked better - if (typingUser == steamId) + if (typingUser == (char*)steamId) continue; typingUser = steamId; |