diff options
author | George Hazan <ghazan@miranda.im> | 2022-08-10 11:21:34 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-08-10 11:21:34 +0300 |
commit | 2a3f0441688ec79c87a28d8526d6d59668497ebd (patch) | |
tree | 281322e383da316f2c64495fee4500841cfc6441 /protocols/JabberG/src/jabber_thread.cpp | |
parent | 7d9292bacb479f34275a4194c94f61edb7b15ad5 (diff) |
Jabber: Jingle DROP command support
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_thread.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index bfe3fa8c97..7870c6f7ba 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -1860,9 +1860,7 @@ bool CJabberProto::OnProcessJingle(const TiXmlElement *node) vc.state = VOICE_STATE_ENDED;
NotifyEventHooks(m_hVoiceEvent, WPARAM(&vc), 0);
- VOIPTerminateSession();
- m_voipSession.Empty();
- m_voipPeerJid.Empty();
+ VOIPTerminateSession(nullptr);
return true;
}
}
|