mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-29 15:39:00 +03:00
count_daily_users failed if db was sqlite due to type failure - presumably this prevcented all sqlite homeservers reporting home
This commit is contained in:
parent
03a26e28d9
commit
9187e0762f
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
||||||
) u
|
) u
|
||||||
"""
|
"""
|
||||||
|
|
||||||
txn.execute(sql, (yesterday,))
|
txn.execute(sql, (str(yesterday),))
|
||||||
count, = txn.fetchone()
|
count, = txn.fetchone()
|
||||||
return count
|
return count
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue