mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-17 23:42:33 +01:00
Fix bug where we didn't return a tuple when expected.
This commit is contained in:
parent
3ed39ad20e
commit
ca1ae7cf9b
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ class StatePduStore(SQLBaseStore):
|
|||
|
||||
if not current:
|
||||
logger.debug("get_unresolved_state_tree No current state.")
|
||||
return return_value
|
||||
return (return_value, None)
|
||||
|
||||
return_value.current_branch.append(current)
|
||||
|
||||
|
|
Loading…
Reference in a new issue