diff options
author | George Hazan <ghazan@miranda.im> | 2020-06-29 19:00:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-06-29 19:00:02 +0300 |
commit | 456293e5f1d7373d1c7a3a0b8888a9dc28b6945d (patch) | |
tree | d0a5ce3a45cb64497d98f52b73ebf6356ac05c29 /protocols/JabberG/src/jabber_proto.cpp | |
parent | 61884f90293ee814791f0594d4388a8244b3511e (diff) |
fixes #2453 (Jabber: add ability to load whole history via Message Archive Management)
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index a28fcc7b87..685f39eb14 100755 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -167,6 +167,7 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) : CreateProtoService(PS_MENU_REQAUTH, &CJabberProto::OnMenuHandleRequestAuth);
CreateProtoService(PS_MENU_GRANTAUTH, &CJabberProto::OnMenuHandleGrantAuth);
CreateProtoService(PS_MENU_REVOKEAUTH, &CJabberProto::OnMenuHandleRevokeAuth);
+ CreateProtoService(PS_MENU_LOADHISTORY, &CJabberProto::OnMenuLoadHistory);
CreateProtoService(JS_DB_GETEVENTTEXT_CHATSTATES, &CJabberProto::OnGetEventTextChatStates);
CreateProtoService(JS_DB_GETEVENTTEXT_PRESENCE, &CJabberProto::OnGetEventTextPresence);
|