forked from MirrorHub/synapse
Settings Fix deleting e2e room keys on xenial (#4295)
This commit is contained in:
parent
cef8ae272a
commit
e93a0ebf50
2 changed files with 2 additions and 1 deletions
1
changelog.d/4295.bugfix
Normal file
1
changelog.d/4295.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix deleting E2E room keys when using old SQLite versions.
|
|
@ -182,7 +182,7 @@ class EndToEndRoomKeyStore(SQLBaseStore):
|
|||
|
||||
keyvalues = {
|
||||
"user_id": user_id,
|
||||
"version": version,
|
||||
"version": int(version),
|
||||
}
|
||||
if room_id:
|
||||
keyvalues['room_id'] = room_id
|
||||
|
|
Loading…
Reference in a new issue