Fix small bug in case of duplicate locks

This commit is contained in:
Matthias 2020-10-22 08:04:48 +02:00
parent 71410a5a1e
commit 9999017953
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ class PairLock(_DECL_BASE):
func.datetime(PairLock.lock_end_time) >= now,
# Only active locks
PairLock.active.is_(True),
).scalar() is not None
).first() is not None
def to_json(self) -> Dict[str, Any]:
return {