mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix bug where we didn't return a tuple when expected.
This commit is contained in:
parent
3ed39ad20e
commit
ca1ae7cf9b
@ -516,7 +516,7 @@ class StatePduStore(SQLBaseStore):
|
|||||||
|
|
||||||
if not current:
|
if not current:
|
||||||
logger.debug("get_unresolved_state_tree No current state.")
|
logger.debug("get_unresolved_state_tree No current state.")
|
||||||
return return_value
|
return (return_value, None)
|
||||||
|
|
||||||
return_value.current_branch.append(current)
|
return_value.current_branch.append(current)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user