summaryrefslogtreecommitdiff
path: root/protocols/JabberG
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-12-13 20:19:46 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-12-13 20:19:46 +0300
commit054bb1949247445a29a68812579800904edf6a02 (patch)
tree6aecd3e738de818d45e703325b17f571baf02ee0 /protocols/JabberG
parent7657cf3cd9f3ae33e29091a947d76234997ebfd9 (diff)
MS_FILE_* services became useless since StdFile died
Diffstat (limited to 'protocols/JabberG')
-rw-r--r--protocols/JabberG/src/jabber_svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_svc.cpp b/protocols/JabberG/src/jabber_svc.cpp
index 5252c0865f..4a78c1101e 100644
--- a/protocols/JabberG/src/jabber_svc.cpp
+++ b/protocols/JabberG/src/jabber_svc.cpp
@@ -481,7 +481,7 @@ INT_PTR __cdecl CJabberProto::JabberServiceParseXmppURI(WPARAM, LPARAM lParam)
hContact = DBCreateContact(jid, jid, true, true);
if (hContact == 0)
return 1;
- CallService(MS_FILE_SENDFILE, hContact, 0);
+ File::Send(hContact);
return 0;
}