don't count echo as a file transfer proxy. Fixes #4411
This commit is contained in:
parent
f5ae955764
commit
223dc0a8f2
|
@ -758,26 +758,30 @@ class ConnectionDisco:
|
|||
if self.commandInfoQuery(con, iq_obj):
|
||||
raise common.xmpp.NodeProcessed
|
||||
|
||||
else:
|
||||
iq = iq_obj.buildReply('result')
|
||||
q = iq.getTag('query')
|
||||
if node:
|
||||
q.setAttr('node', node)
|
||||
q.addChild('identity', attrs = gajim.gajim_identity)
|
||||
extension = None
|
||||
if node and node.find('#') != -1:
|
||||
extension = node[node.index('#') + 1:]
|
||||
client_version = 'http://gajim.org#' + gajim.caps_hash[self.name]
|
||||
id = unicode(iq_obj.getAttr('id'))
|
||||
if id[0] == 'p':
|
||||
# We get this request from echo.server
|
||||
raise common.xmpp.NodeProcessed
|
||||
|
||||
if node in (None, client_version):
|
||||
for f in gajim.gajim_common_features:
|
||||
q.addChild('feature', attrs = {'var': f})
|
||||
for f in gajim.gajim_optional_features[self.name]:
|
||||
q.addChild('feature', attrs = {'var': f})
|
||||
iq = iq_obj.buildReply('result')
|
||||
q = iq.getTag('query')
|
||||
if node:
|
||||
q.setAttr('node', node)
|
||||
q.addChild('identity', attrs = gajim.gajim_identity)
|
||||
extension = None
|
||||
if node and node.find('#') != -1:
|
||||
extension = node[node.index('#') + 1:]
|
||||
client_version = 'http://gajim.org#' + gajim.caps_hash[self.name]
|
||||
|
||||
if q.getChildren():
|
||||
self.connection.send(iq)
|
||||
raise common.xmpp.NodeProcessed
|
||||
if node in (None, client_version):
|
||||
for f in gajim.gajim_common_features:
|
||||
q.addChild('feature', attrs = {'var': f})
|
||||
for f in gajim.gajim_optional_features[self.name]:
|
||||
q.addChild('feature', attrs = {'var': f})
|
||||
|
||||
if q.getChildren():
|
||||
self.connection.send(iq)
|
||||
raise common.xmpp.NodeProcessed
|
||||
|
||||
def _DiscoverInfoErrorCB(self, con, iq_obj):
|
||||
gajim.log.debug('DiscoverInfoErrorCB')
|
||||
|
|
Loading…
Reference in New Issue