diff options
Diffstat (limited to 'sleekxmpp/plugins/xep_0060/stanza')
-rw-r--r-- | sleekxmpp/plugins/xep_0060/stanza/pubsub.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0060/stanza/pubsub.py b/sleekxmpp/plugins/xep_0060/stanza/pubsub.py index 9f3fbe22..d62fc661 100644 --- a/sleekxmpp/plugins/xep_0060/stanza/pubsub.py +++ b/sleekxmpp/plugins/xep_0060/stanza/pubsub.py @@ -113,6 +113,9 @@ class Items(ElementBase): plugin_tag_map = {} subitem = (Item,) + def set_max_items(self, value): + self._set_attr('max_items', str(value)) + registerStanzaPlugin(Pubsub, Items) class Create(ElementBase): |