Entity capabilities: Check c node for ver attribute

fixes #530
This commit is contained in:
fiaxh 2019-03-13 18:40:45 +01:00
parent df6328dfcb
commit fb504308d0
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ namespace Xmpp.Xep.EntityCapabilities {
private void on_received_presence(XmppStream stream, Presence.Stanza presence) {
StanzaNode? c_node = presence.stanza.get_subnode("c", NS_URI);
if (c_node != null) {
string ver_attribute = c_node.get_attribute("ver", NS_URI);
string? ver_attribute = c_node.get_attribute("ver", NS_URI);
if (ver_attribute == null) return;
Gee.List<string> capabilities = storage.get_features(ver_attribute);
if (capabilities.size == 0) {
stream.get_module(ServiceDiscovery.Module.IDENTITY).request_info(stream, presence.from, (stream, query_result) => {