mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-27 11:09:56 +00:00
fixed form accessors in pubsub stanzas
This commit is contained in:
parent
b70565720f
commit
7fb9d68714
1 changed files with 2 additions and 6 deletions
|
@ -221,9 +221,7 @@ class Options(ElementBase):
|
|||
|
||||
def getOptions(self):
|
||||
config = self.xml.find('{jabber:x:data}x')
|
||||
form = xep_0004.Form()
|
||||
if config is not None:
|
||||
form.fromXML(config)
|
||||
form = xep_0004.Form(xml=config)
|
||||
return form
|
||||
|
||||
def setOptions(self, value):
|
||||
|
@ -254,9 +252,7 @@ class PublishOptions(ElementBase):
|
|||
|
||||
def get_publish_options(self):
|
||||
config = self.xml.find('{jabber:x:data}x')
|
||||
form = xep_0004.Form()
|
||||
if config is not None:
|
||||
form.fromXML(config)
|
||||
form = xep_0004.Form(xml=config)
|
||||
return form
|
||||
|
||||
def set_publish_options(self, value):
|
||||
|
|
Loading…
Reference in a new issue