mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-21 17:15:38 +03:00
Fix pontenial bug in state resolution handler that compared dicts rather than their id's
This commit is contained in:
parent
33d62c2c66
commit
1a26905cc9
1 changed files with 4 additions and 1 deletions
|
@ -157,7 +157,10 @@ class StateHandler(object):
|
|||
defer.returnValue(True)
|
||||
return
|
||||
|
||||
if new_branch[-1] == current_branch[-1]:
|
||||
n = new_branch[-1]
|
||||
c = current_branch[-1]
|
||||
|
||||
if n.pdu_id == c.pdu_id and n.origin == c.origin:
|
||||
# We have all the PDUs we need, so we can just do the conflict
|
||||
# resolution.
|
||||
|
||||
|
|
Loading…
Reference in a new issue