diff options
author | George Hazan <george.hazan@gmail.com> | 2023-06-23 16:44:14 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-06-23 16:44:14 +0300 |
commit | a07bca6c0e46003a46270999c0c92d3cfef94ee7 (patch) | |
tree | 0704041defd4e09c0355c997ebd84cad6e288d06 /protocols/JabberG/src/jabber_opt.cpp | |
parent | 253e80bc4b440589ead1f756daffa66ad3a045c3 (diff) |
Jingle: first step towards #3351
Diffstat (limited to 'protocols/JabberG/src/jabber_opt.cpp')
-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 e5c570e589..b0bc6d6342 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -707,7 +707,7 @@ public: 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 File Upload (XEP-0363)"), m_proto->m_bUseHttpUpload);
- if (g_plugin.bJingle)
+ if (m_proto->hasJingle())
m_options.AddOption(LPGENW("Messaging"), LPGENW("Enable VOIP (experimental)"), m_proto->m_bEnableVOIP);
m_options.AddOption(LPGENW("Server options"), LPGENW("Use Stream Management (XEP-0198) if possible (experimental)"), m_proto->m_bEnableStreamMgmt);
|