Ensure expect_problems
is a dict within encrypt_message
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
ce868745d5
commit
1ac08130ed
1 changed files with 4 additions and 2 deletions
|
@ -579,8 +579,10 @@ class XEP_0384(BasePlugin):
|
|||
# or if we hit the same set of errors.
|
||||
errors = [] # type: List[omemo.exceptions.OMEMOException]
|
||||
|
||||
if expect_problems is not None:
|
||||
expect_problems = {jid.bare: did for (jid, did) in expect_problems.items()}
|
||||
if expect_problems is None:
|
||||
expect_problems = {}
|
||||
|
||||
expect_problems = {jid.bare: did for (jid, did) in expect_problems.items()}
|
||||
|
||||
try:
|
||||
encrypted = self._omemo.encryptMessage(
|
||||
|
|
Loading…
Reference in a new issue