0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-30 05:29:00 +02:00

Close cursor

This commit is contained in:
Erik Johnston 2016-02-18 16:39:28 +00:00
parent 42109a62a4
commit e6c5e3f28a

View file

@ -212,6 +212,7 @@ class DataStore(RoomMemberStore, RoomStore,
txn = db_conn.cursor()
txn.execute(sql, (PresenceState.OFFLINE,))
rows = self.cursor_to_dict(txn)
txn.close()
for row in rows:
row["currently_active"] = bool(row["currently_active"])