diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-20 04:09:32 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-20 04:09:32 +0000 |
commit | f7129b33d139299bbb63b83556b6e2427c9333b8 (patch) | |
tree | b95af4a6e0c49ddd3b23a452481631619deec29c /MySpace/server_con.cpp | |
parent | 2184116cbf00ea959282cc6172934c81c74cb252 (diff) |
increased typing notify timeout
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@290 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'MySpace/server_con.cpp')
-rw-r--r-- | MySpace/server_con.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MySpace/server_con.cpp b/MySpace/server_con.cpp index 9701bf0..e6ee1e3 100644 --- a/MySpace/server_con.cpp +++ b/MySpace/server_con.cpp @@ -522,7 +522,7 @@ void __cdecl ServerThreadFunc(void*) { char smsg[1024];
if(msg.get_string("msg", smsg, 1024)) {
if(strcmp(smsg, "%typing%") == 0)
- CallService(MS_PROTO_CONTACTISTYPING, (WPARAM)hContact, (LPARAM)5);
+ CallService(MS_PROTO_CONTACTISTYPING, (WPARAM)hContact, (LPARAM)20);
else if(strcmp(smsg, "%stoptyping%") == 0) {
CallService(MS_PROTO_CONTACTISTYPING, (WPARAM)hContact, (LPARAM)0);
} else if(strncmp(smsg, "!!!ZAP_SEND!!!=RTE_BTN_ZAPS_", 28) == 0) {
|