summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MySpace/NetMessage.cpp1
-rw-r--r--MySpace/server_con.cpp2
-rw-r--r--MySpace/version.h2
3 files changed, 2 insertions, 3 deletions
diff --git a/MySpace/NetMessage.cpp b/MySpace/NetMessage.cpp
index d539132..4147d14 100644
--- a/MySpace/NetMessage.cpp
+++ b/MySpace/NetMessage.cpp
@@ -175,7 +175,6 @@ char *PipedStringList::unescape_inplace(char *val) {
val[write_pos++] = '|';
} else {
val[write_pos++] = val[read_pos++];
- val[write_pos++] = val[read_pos++];
}
} else {
val[write_pos++] = val[read_pos++];
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) {
diff --git a/MySpace/version.h b/MySpace/version.h
index 5996198..9fbaea4 100644
--- a/MySpace/version.h
+++ b/MySpace/version.h
@@ -5,7 +5,7 @@
#define __MAJOR_VERSION 0
#define __MINOR_VERSION 0
#define __RELEASE_NUM 5
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM