Skip to content
Snippets Groups Projects
Commit 9187e076 authored by Neil Johnson's avatar Neil Johnson
Browse files

count_daily_users failed if db was sqlite due to type failure - presumably...

count_daily_users failed if db was sqlite due to type failure - presumably this prevcented all sqlite homeservers reporting home
parent 03a26e28
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,7 @@ class DataStore(RoomMemberStore, RoomStore,
) u
"""
txn.execute(sql, (yesterday,))
txn.execute(sql, (str(yesterday),))
count, = txn.fetchone()
return count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment