encryptRatchetForwardingMessage: bundle isn't required for our use-cases
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
6ab8bba4f0
commit
3e92fc0516
1 changed files with 2 additions and 6 deletions
|
@ -773,13 +773,9 @@ class XEP_0384(BasePlugin):
|
|||
elif _ignore_trust:
|
||||
if not _device_id or len(barejids) != 1:
|
||||
raise ErroneousParameter
|
||||
bundle = self.bundles.get(barejids[0], {}).get(_device_id)
|
||||
if bundle is None:
|
||||
error = omemo.exceptions.MissingBundleException(barejids[0], _device_id)
|
||||
raise omemo.exceptions.EncryptionProblemsException([error])
|
||||
encrypted = await self._omemo().encryptRatchetForwardingMessage(
|
||||
barejids[0],
|
||||
bundle,
|
||||
bare_jid=barejids[0],
|
||||
bundle=None,
|
||||
expect_problems=expect_problems,
|
||||
)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue