mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Settings Fix deleting e2e room keys on xenial (#4295)
This commit is contained in:
parent
eb835bf65b
commit
c7144b105c
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 = {
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user