this is more xmpp compliant (thanks Igor)
This commit is contained in:
parent
2463197d4f
commit
995515e6db
|
@ -449,6 +449,9 @@ class Client(Connection):
|
||||||
def sendPresence(self,type=None,priority=None,show=None,status=None,signedStatus=None):
|
def sendPresence(self,type=None,priority=None,show=None,status=None,signedStatus=None):
|
||||||
"""Sends a presence protocol element to the server.
|
"""Sends a presence protocol element to the server.
|
||||||
Used to inform the server that you are online"""
|
Used to inform the server that you are online"""
|
||||||
|
if type == 'available':
|
||||||
|
type = None
|
||||||
|
show = None
|
||||||
presence = Presence(type=type,priority=priority,show=show,status=status)
|
presence = Presence(type=type,priority=priority,show=show,status=status)
|
||||||
if signedStatus:
|
if signedStatus:
|
||||||
presence.setX(NS_XSIGNED).insertData(signedStatus)
|
presence.setX(NS_XSIGNED).insertData(signedStatus)
|
||||||
|
|
Loading…
Reference in New Issue