1
0

Fix logic bug in prior code

This commit is contained in:
Olivier Wilkinson (reivilibre)
2020-08-17 18:23:51 +01:00
parent 6c52666453
commit 9ba56cbf8a

View File

@@ -160,7 +160,7 @@ class TransactionStore(SQLBaseStore):
allow_none=True,
)
if result and result["retry_last_ts"] > 0:
if result and result["retry_last_ts"] and result["retry_last_ts"] > 0:
return result
else:
return None