Skip to content
Snippets Groups Projects
Unverified Commit e93a0ebf authored by Amber Brown's avatar Amber Brown Committed by GitHub
Browse files

Settings Fix deleting e2e room keys on xenial (#4295)

parent cef8ae27
No related branches found
No related tags found
No related merge requests found
Fix deleting E2E room keys when using old SQLite versions.
...@@ -182,7 +182,7 @@ class EndToEndRoomKeyStore(SQLBaseStore): ...@@ -182,7 +182,7 @@ class EndToEndRoomKeyStore(SQLBaseStore):
keyvalues = { keyvalues = {
"user_id": user_id, "user_id": user_id,
"version": version, "version": int(version),
} }
if room_id: if room_id:
keyvalues['room_id'] = room_id keyvalues['room_id'] = room_id
......
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