0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 16:48:18 +02:00

Fix bug where we sometimes set min_token to None.

This commit is contained in:
Erik Johnston 2014-08-19 14:32:47 +01:00
parent 234128586b
commit 840771190f

View file

@ -176,7 +176,8 @@ class DataStore(RoomMemberStore, RoomStore,
"SELECT MIN(stream_ordering) FROM events"
)
self.min_token = min(row[0][0], -1) if row and row[0] else -1
self.min_token = row[0][0] if row and row[0] and row[0][0] else -1
self.min_token = min(self.min_token, -1)
logger.debug("min_token is: %s", self.min_token)