Fix usage of the 0004 plugin interface

form['fields'] is an ordered list of fields while most plugins expect a
dict there. Fixes, among other things, a caps bug.
This commit is contained in:
mathieui
2018-02-11 16:42:59 +01:00
parent 20e88fda50
commit e177726387
6 changed files with 13 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ class Form(ElementBase):
namespace = 'jabber:x:data'
name = 'x'
plugin_attrib = 'form'
interfaces = OrderedSet(('instructions', 'reported', 'title', 'type', 'items', ))
interfaces = OrderedSet(('instructions', 'reported', 'title', 'type', 'items', 'values'))
sub_interfaces = {'title'}
form_types = {'cancel', 'form', 'result', 'submit'}