diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-14 20:10:01 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-14 20:10:01 +0300 |
commit | cfb2353a35c2275d1f8d45323817503ee6ddc4a4 (patch) | |
tree | 30afd88d9b4b3f2117a7fe25f2a3c3ca17ca87d6 /protocols/ICQ-WIM/src/http.h | |
parent | 7f350d178a8d15e7c8260c6e30f26670e5e813f3 (diff) |
fixes #3757 (ICQ: Миранда не может определить, что собеседник использует Миранду)
Diffstat (limited to 'protocols/ICQ-WIM/src/http.h')
-rw-r--r-- | protocols/ICQ-WIM/src/http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/http.h b/protocols/ICQ-WIM/src/http.h index c2262a53b4..5bbccd0be7 100644 --- a/protocols/ICQ-WIM/src/http.h +++ b/protocols/ICQ-WIM/src/http.h @@ -3,7 +3,7 @@ class CIcqProto; enum IcqConnection { - CONN_NONE = -1, CONN_MAIN = 0, CONN_FETCH = 1, CONN_RAPI = 2, CONN_LAST = 3 + CONN_OLD = -2, CONN_NONE = -1, CONN_MAIN = 0, CONN_FETCH = 1, CONN_RAPI = 2, CONN_LAST = 3 }; struct AsyncHttpRequest : public MTHttpRequest<CIcqProto> |