mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix bug where assumed dict was namedtuple
This commit is contained in:
parent
473a239d83
commit
39de87869c
@ -59,7 +59,7 @@ class TransactionStore(SQLBaseStore):
|
||||
allow_none=True,
|
||||
)
|
||||
|
||||
if result and result.response_code:
|
||||
if result and result["response_code"]:
|
||||
return result["response_code"], result["response_json"]
|
||||
else:
|
||||
return None
|
||||
|
Loading…
Reference in New Issue
Block a user