mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Fix incorrect attribute name
This commit is contained in:
parent
464ffd1b5e
commit
af4701b311
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ class TransactionQueue(object):
|
|||
if key:
|
||||
self.pending_edus_keyed_by_dest.setdefault(
|
||||
destination, {}
|
||||
)[(edu.type, key)] = edu
|
||||
)[(edu.edu_type, key)] = edu
|
||||
else:
|
||||
self.pending_edus_by_dest.setdefault(destination, []).append(edu)
|
||||
|
||||
|
|
Loading…
Reference in a new issue