add a space between the name of the client and it's version number
This commit is contained in:
parent
85527841a2
commit
5f5b647717
Core
|
@ -646,7 +646,7 @@ class GajimCore:
|
||||||
if qp.getTag('name'):
|
if qp.getTag('name'):
|
||||||
client_info += qp.getTag('name').getData()
|
client_info += qp.getTag('name').getData()
|
||||||
if qp.getTag('version'):
|
if qp.getTag('version'):
|
||||||
client_info += qp.getTag('version').getData()
|
client_info += ' ' + qp.getTag('version').getData()
|
||||||
if qp.getTag('os'):
|
if qp.getTag('os'):
|
||||||
os_info += qp.getTag('os').getData()
|
os_info += qp.getTag('os').getData()
|
||||||
jid = iq_obj.getFrom().getStripped()
|
jid = iq_obj.getFrom().getStripped()
|
||||||
|
|
Loading…
Reference in New Issue