Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix bug in per-room message retention policies. (#7850)
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep authored Jul 14, 2020
1 parent 8522310 commit 8d0097b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/7850.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix "AttributeError: 'str' object has no attribute 'get'" error message when applying per-room message retention policies. The bug was introduced in Synapse 1.7.0.
2 changes: 1 addition & 1 deletion synapse/storage/data_stores/main/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ def _background_insert_retention_txn(txn):
retention_policy = {}
else:
ev = json.loads(row["json"])
retention_policy = json.dumps(ev["content"])
retention_policy = ev["content"]

self.db.simple_insert_txn(
txn=txn,
Expand Down

0 comments on commit 8d0097b

Please sign in to comment.