Added name='Gajim' to disco identity

This commit is contained in:
Travis Shirk 2006-02-04 20:27:17 +00:00
parent 6b925ec324
commit ec03a1d853
1 changed files with 3 additions and 1 deletions

View File

@ -1202,7 +1202,9 @@ class Connection:
gajim.log.debug('DiscoverInfoGetCB')
iq = iq_obj.buildReply('result')
q = iq.getTag('query')
q.addChild('identity', attrs = {'type': 'pc', 'category': 'client'})
q.addChild('identity', attrs = {'type': 'pc',
'category': 'client',
'name': 'Gajim'})
q.addChild('feature', attrs = {'var': common.xmpp.NS_BYTESTREAM})
q.addChild('feature', attrs = {'var': common.xmpp.NS_SI})
q.addChild('feature', attrs = {'var': common.xmpp.NS_FILE})