diff options
Diffstat (limited to 'sleekxmpp/plugins/xep_0080')
-rw-r--r-- | sleekxmpp/plugins/xep_0080/geoloc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0080/geoloc.py b/sleekxmpp/plugins/xep_0080/geoloc.py index 735f6ac0..99e07951 100644 --- a/sleekxmpp/plugins/xep_0080/geoloc.py +++ b/sleekxmpp/plugins/xep_0080/geoloc.py @@ -103,7 +103,7 @@ class xep_0080(base_plugin): geoloc = Geoloc() geoloc.values = kwargs - self.xmpp['xep_0163'].publish(geoloc, + return self.xmpp['xep_0163'].publish(geoloc, node=Geoloc.namespace, options=options, ifrom=ifrom, @@ -126,7 +126,7 @@ class xep_0080(base_plugin): be executed when a reply stanza is received. """ geoloc = Geoloc() - self.xmpp['xep_0163'].publish(geoloc, + return self.xmpp['xep_0163'].publish(geoloc, node=Geoloc.namespace, ifrom=ifrom, block=block, |