diff options
author | dartraiden <wowemuh@gmail.com> | 2023-06-08 18:52:36 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-06-08 18:52:36 +0300 |
commit | 7e5565d2e3240a28ceac379f098ac957fc8ffe34 (patch) | |
tree | 678ac7892f645e72b7ad81e8dacb795c46b27f13 /protocols | |
parent | 9c8a16c0a83cfde3d594540399b0131a1898c553 (diff) |
Jabber: use correct XEP name
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/JabberG/src/jabber_opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index 56055bdabc..e5c570e589 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -706,7 +706,7 @@ public: m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable Message Archive Management (XEP-0313)"), m_proto->m_bEnableMam);
m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable carbon copies (XEP-0280)"), m_proto->m_bEnableCarbons);
if (mir_strlen(ptrA(m_proto->getStringA("HttpUpload"))))
- m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable HTTP Upload (XEP-0363)"), m_proto->m_bUseHttpUpload);
+ m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable HTTP File Upload (XEP-0363)"), m_proto->m_bUseHttpUpload);
if (g_plugin.bJingle)
m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable VOIP (experimental)"), m_proto->m_bEnableVOIP);
|