Close cursor
This commit is contained in:
parent
42109a62a4
commit
e6c5e3f28a
|
@ -212,6 +212,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
||||||
txn = db_conn.cursor()
|
txn = db_conn.cursor()
|
||||||
txn.execute(sql, (PresenceState.OFFLINE,))
|
txn.execute(sql, (PresenceState.OFFLINE,))
|
||||||
rows = self.cursor_to_dict(txn)
|
rows = self.cursor_to_dict(txn)
|
||||||
|
txn.close()
|
||||||
|
|
||||||
for row in rows:
|
for row in rows:
|
||||||
row["currently_active"] = bool(row["currently_active"])
|
row["currently_active"] = bool(row["currently_active"])
|
||||||
|
|
Loading…
Reference in New Issue