summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0004/stanza/form.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-12-13 08:59:39 -0800
committerLance Stout <lancestout@gmail.com>2011-12-13 08:59:39 -0800
commit9c6dde5d22badadb318ca8f340b592c63944c975 (patch)
treedefa7c85388c514880fec6af0c5346ecd6d129ea /sleekxmpp/plugins/xep_0004/stanza/form.py
parentfc8a13df5a76176eb843ee0c4c4d4da462d3ab3b (diff)
downloadslixmpp-9c6dde5d22badadb318ca8f340b592c63944c975.tar.gz
slixmpp-9c6dde5d22badadb318ca8f340b592c63944c975.tar.bz2
slixmpp-9c6dde5d22badadb318ca8f340b592c63944c975.tar.xz
slixmpp-9c6dde5d22badadb318ca8f340b592c63944c975.zip
Ensure that item fields have the proper type.
The item fields were not setting their type based on the reported field's type attribute, so values were not being encoded properly. Fixes issue #121
Diffstat (limited to 'sleekxmpp/plugins/xep_0004/stanza/form.py')
-rw-r--r--sleekxmpp/plugins/xep_0004/stanza/form.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sleekxmpp/plugins/xep_0004/stanza/form.py b/sleekxmpp/plugins/xep_0004/stanza/form.py
index 993f7b12..1fcd707f 100644
--- a/sleekxmpp/plugins/xep_0004/stanza/form.py
+++ b/sleekxmpp/plugins/xep_0004/stanza/form.py
@@ -96,11 +96,11 @@ class Form(ElementBase):
self.xml.append(itemXML)
reported_vars = self['reported'].keys()
for var in reported_vars:
- fieldXML = ET.Element('{%s}field' % FormField.namespace)
- itemXML.append(fieldXML)
- field = FormField(xml=fieldXML)
+ field = FormField()
+ field._type = self['reported'][var]['type']
field['var'] = var
field['value'] = values.get(var, None)
+ itemXML.append(field.xml)
def add_reported(self, var, ftype=None, label='', desc='', **kwargs):
kwtype = kwargs.get('type', None)