diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 18:54:18 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 18:54:18 +0000 |
commit | aa6b2f434c204d6da1906f381c418bd8f0bca163 (patch) | |
tree | 4771c946f6db36ddb80842362fb1f7ec37deda27 /protocols/Steam/src/api/pending.h | |
parent | 910486f051234fb8e24426152af98ab90319aa16 (diff) |
Steam:
- remove custom db event adding
- add charset utf-8 to some of requests
git-svn-id: http://svn.miranda-ng.org/main/trunk@15607 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/api/pending.h')
-rw-r--r-- | protocols/Steam/src/api/pending.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Steam/src/api/pending.h b/protocols/Steam/src/api/pending.h index b07e14f087..d878d34caa 100644 --- a/protocols/Steam/src/api/pending.h +++ b/protocols/Steam/src/api/pending.h @@ -18,7 +18,7 @@ public: SetData(data, strlen(data));
AddHeader("Cookie", cookie);
- AddHeader("Content-Type", "application/x-www-form-urlencoded");
+ AddHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
}
};
@@ -39,7 +39,7 @@ public: SetData(data, strlen(data));
AddHeader("Cookie", cookie);
- AddHeader("Content-Type", "application/x-www-form-urlencoded");
+ AddHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
}
};
@@ -60,7 +60,7 @@ public: SetData(data, strlen(data));
AddHeader("Cookie", cookie);
- AddHeader("Content-Type", "application/x-www-form-urlencoded");
+ AddHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
}
};
|