summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0030/static.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-01-19 12:08:28 -0500
committerLance Stout <lancestout@gmail.com>2011-01-19 12:08:28 -0500
commitf1db2fc156aabba78e4aa726b441c434d48e9136 (patch)
tree8cce09b42f2bc599ae485af0e8b1b300033fedc8 /sleekxmpp/plugins/xep_0030/static.py
parent2004ddd678fae9af590db2065478d2592bc2530b (diff)
downloadslixmpp-f1db2fc156aabba78e4aa726b441c434d48e9136.tar.gz
slixmpp-f1db2fc156aabba78e4aa726b441c434d48e9136.tar.bz2
slixmpp-f1db2fc156aabba78e4aa726b441c434d48e9136.tar.xz
slixmpp-f1db2fc156aabba78e4aa726b441c434d48e9136.zip
Fix error in disco add_item.
None values were not being treated properly.
Diffstat (limited to 'sleekxmpp/plugins/xep_0030/static.py')
-rw-r--r--sleekxmpp/plugins/xep_0030/static.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0030/static.py b/sleekxmpp/plugins/xep_0030/static.py
index eff67f02..f957c84c 100644
--- a/sleekxmpp/plugins/xep_0030/static.py
+++ b/sleekxmpp/plugins/xep_0030/static.py
@@ -247,8 +247,8 @@ class StaticDisco(object):
self.add_node(jid, node)
self.nodes[(jid, node)]['items'].add_item(
data.get('ijid', ''),
- node=data.get('inode', None),
- name=data.get('name', None))
+ node=data.get('inode', ''),
+ name=data.get('name', ''))
def del_item(self, jid, node, data):
"""
@@ -262,3 +262,4 @@ class StaticDisco(object):
self.nodes[(jid, node)]['items'].del_item(
data.get('ijid', ''),
node=data.get('inode', None))
+