Mercurial > libervia-backend
diff sat/plugins/plugin_xep_0384.py @ 3933:cecf45416403
plugin XEP-0373 and XEP-0374: Implementation of OX and OXIM:
GPGME is used as the GPG provider.
rel 374
author | Syndace <me@syndace.dev> |
---|---|
date | Tue, 20 Sep 2022 16:22:18 +0200 |
parents | 42d3110ac9b1 |
children | 8dc6a4cfda4b |
line wrap: on
line diff
--- a/sat/plugins/plugin_xep_0384.py Mon Oct 10 15:23:59 2022 +0200 +++ b/sat/plugins/plugin_xep_0384.py Tue Sep 20 16:22:18 2022 +0200 @@ -479,10 +479,10 @@ xml_tools.et_elt_2_domish_elt(element), item_id=str(bundle.device_id), extra={ - xep_0060.EXTRA_PUBLISH_OPTIONS: { - xep_0060.OPT_MAX_ITEMS: "max" + XEP_0060.EXTRA_PUBLISH_OPTIONS: { + XEP_0060.OPT_MAX_ITEMS: "max" }, - xep_0060.EXTRA_ON_PRECOND_NOT_MET: "raise" + XEP_0060.EXTRA_ON_PRECOND_NOT_MET: "raise" } ) except (error.StanzaError, Exception) as e: @@ -519,8 +519,8 @@ xml_tools.et_elt_2_domish_elt(element), item_id=xep_0060.ID_SINGLETON, extra={ - xep_0060.EXTRA_PUBLISH_OPTIONS: { xep_0060.OPT_MAX_ITEMS: 1 }, - xep_0060.EXTRA_ON_PRECOND_NOT_MET: "publish_without_options" + XEP_0060.EXTRA_PUBLISH_OPTIONS: { XEP_0060.OPT_MAX_ITEMS: 1 }, + XEP_0060.EXTRA_ON_PRECOND_NOT_MET: "publish_without_options" } ) except Exception as e: @@ -546,7 +546,6 @@ client, jid.JID(bare_jid), node, - max_items=None, item_ids=[ str(device_id) ] ) except Exception as e: @@ -653,11 +652,11 @@ xml_tools.et_elt_2_domish_elt(element), item_id=xep_0060.ID_SINGLETON, extra={ - xep_0060.EXTRA_PUBLISH_OPTIONS: { - xep_0060.OPT_MAX_ITEMS: 1, - xep_0060.OPT_ACCESS_MODEL: "open" + XEP_0060.EXTRA_PUBLISH_OPTIONS: { + XEP_0060.OPT_MAX_ITEMS: 1, + XEP_0060.OPT_ACCESS_MODEL: "open" }, - xep_0060.EXTRA_ON_PRECOND_NOT_MET: "raise" + XEP_0060.EXTRA_ON_PRECOND_NOT_MET: "raise" } ) except (error.StanzaError, Exception) as e: