mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:46:06 -04:00
SYN-103: Ignore the 'origin' key in received EDUs. Instead take the origin from the transaction itself
This commit is contained in:
parent
f74e850b5c
commit
9aed791fc3
5 changed files with 10 additions and 3 deletions
|
@ -319,7 +319,7 @@ class ReplicationLayer(object):
|
|||
|
||||
if hasattr(transaction, "edus"):
|
||||
for edu in [Edu(**x) for x in transaction.edus]:
|
||||
self.received_edu(edu.origin, edu.edu_type, edu.content)
|
||||
self.received_edu(transaction.origin, edu.edu_type, edu.content)
|
||||
|
||||
results = yield defer.DeferredList(dl)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue