diff options
author | aunsane <aunsane@gmail.com> | 2018-01-25 23:10:34 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-01-25 23:10:56 +0300 |
commit | c6e8f8223cab9d799593b7b2cfa22134aa9745d6 (patch) | |
tree | a5f21869fe428cc7d0de5db5bc81e53dd2d61614 /protocols/Tox | |
parent | 1ca493fc7af16dd20ad13453fc19774da3c65181 (diff) |
Tox: /me command broken ( fixed #1116)
Diffstat (limited to 'protocols/Tox')
-rw-r--r-- | protocols/Tox/src/stdafx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/stdafx.h b/protocols/Tox/src/stdafx.h index 099e77f46d..ee73c5856d 100644 --- a/protocols/Tox/src/stdafx.h +++ b/protocols/Tox/src/stdafx.h @@ -85,8 +85,8 @@ extern HINSTANCE g_hInstance; #define TOX_SETTINGS_NODE_PKEY TOX_SETTINGS_NODE_PREFIX"%d_PubKey"
#define TOX_SETTINGS_NODE_COUNT TOX_SETTINGS_NODE_PREFIX"Count"
-#define DB_EVENT_ACTION 1000 + TOX_MESSAGE_TYPE_ACTION
-#define DB_EVENT_CORRECTION 1000 + TOX_MESSAGE_TYPE_CORRECTION
+#define DB_EVENT_ACTION 10000 + TOX_MESSAGE_TYPE_ACTION
+#define DB_EVENT_CORRECTION 10000 + TOX_MESSAGE_TYPE_CORRECTION
#define TOX_MAX_AVATAR_SIZE 1 << 16 // 2 ^ 16 bytes
|