Fix bug when requeueing messages for encryption.
This probably fixes #79.
This commit is contained in:
parent
4a3f5217bc
commit
368f5cfc3b
1 changed files with 1 additions and 1 deletions
|
@ -1724,7 +1724,7 @@ class MatrixServer(object):
|
||||||
|
|
||||||
if not ret:
|
if not ret:
|
||||||
self.encryption_queue[room_id].pop()
|
self.encryption_queue[room_id].pop()
|
||||||
self.encryption_queue[room_id].appendleft(message)
|
self.encryption_queue[room_id].appendleft(item)
|
||||||
break
|
break
|
||||||
|
|
||||||
except OlmTrustError:
|
except OlmTrustError:
|
||||||
|
|
Loading…
Reference in a new issue