diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-07-06 18:31:20 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-07-06 18:31:20 +0000 |
commit | 78bfee6c598fe618fe3de0d03925f11f95d6cdf9 (patch) | |
tree | 183965b797587e187302f0f70d2c0481cf722c94 /protocols/Steam/src/steam_messages.cpp | |
parent | 246431d8bb993046bda93a9b30a424cbf3a07ad7 (diff) |
Steam: temporary added max message length
git-svn-id: http://svn.miranda-ng.org/main/trunk@9716 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_messages.cpp')
-rw-r--r-- | protocols/Steam/src/steam_messages.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_messages.cpp b/protocols/Steam/src/steam_messages.cpp index 44feb387ad..5ae78e726c 100644 --- a/protocols/Steam/src/steam_messages.cpp +++ b/protocols/Steam/src/steam_messages.cpp @@ -19,7 +19,7 @@ void CSteamProto::OnMessageSent(const NETLIBHTTPREQUEST *response, void *arg) bool result = false;
- ptrA steamId((char*)arg);
+ ptrA steamId(getStringA(param->hContact, "SteamID"));
if (response != NULL && response->resultCode == HTTP_STATUS_OK)
{
|