# HG changeset patch # User Goffi # Date 1546590032 -3600 # Node ID 3ee396b2ecf3ecb456887e0bb60ea51174777e3e # Parent e6716d90c2fef841c4c86dc65ed742bfff61fd71 plugin XEP-0384: don't ignore StanzaError if it's not item-not-found diff -r e6716d90c2fe -r 3ee396b2ecf3 sat/plugins/plugin_xep_0384.py --- a/sat/plugins/plugin_xep_0384.py Thu Jan 03 21:04:55 2019 +0100 +++ b/sat/plugins/plugin_xep_0384.py Fri Jan 04 09:20:32 2019 +0100 @@ -640,6 +640,7 @@ if e.condition == 'item-not-found': log.info(_(u"there is no node to handle OMEMO devices")) defer.returnValue(set()) + raise e devices = self.parseDevices(items) defer.returnValue(devices)