# HG changeset patch # User Goffi # Date 1515166205 -3600 # Node ID ae7e9ce4c64cb5d868b3a0b83fc55684a5801f1b # Parent 4cc4d49e1d0fbd1eca28fca1da1924e4591e032e pages (chat): fixed call to discoInfos diff -r 4cc4d49e1d0f -r ae7e9ce4c64c src/pages/chat/page_meta.py --- a/src/pages/chat/page_meta.py Fri Jan 05 16:30:05 2018 +0100 +++ b/src/pages/chat/page_meta.py Fri Jan 05 16:30:05 2018 +0100 @@ -51,7 +51,7 @@ jid_s = yield self.host.bridgeCall(u'getParamA', "JabberID", "Connection", profile_key=profile) profile_jid = session.jid = jid.JID(jid_s) - disco = yield self.host.bridgeCall(u"discoInfos", target_jid.host, profile) + disco = yield self.host.bridgeCall(u"discoInfos", target_jid.host, u'', True, profile) if "conference" in [i[0] for i in disco[1]]: chat_type = C.CHAT_GROUP join_ret = yield self.host.bridgeCall(u"mucJoin", target_jid.userhost(), "", "", profile)