diff options
author | George Hazan <george.hazan@gmail.com> | 2023-05-16 18:31:01 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-05-16 18:31:01 +0300 |
commit | 577fbf81d31468144a6b188726a5c39edc625a7d (patch) | |
tree | 98a9b2f46a2d15e71bfd25aed71a2ae25ba5f8bc /protocols/JabberG/src | |
parent | 2c17233720ff8b78b8a2ef44724b3218a0029589 (diff) |
Jabber: fix for offline file links in HTTP Upload
Diffstat (limited to 'protocols/JabberG/src')
-rw-r--r-- | protocols/JabberG/src/jabber_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 39f6413007..68a0696630 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -1345,7 +1345,7 @@ void CJabberProto::OnProcessMessage(const TiXmlElement *node, ThreadData *info) ft->std.szCurrentFile.w = mir_utf8decodeW(szName);
PROTORECVFILE pre = {};
- pre.dwFlags = PRFF_UTF;
+ pre.dwFlags = PRFF_UTF | PRFF_SILENT;
pre.fileCount = 1;
pre.timestamp = time(0);
pre.files.a = &pszName;
|