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

Commit

Permalink
Merge commit '8d0097bef' into anoa/dinsic_release_1_18_x
Browse files Browse the repository at this point in the history
* commit '8d0097bef':
  Fix bug in per-room message retention policies. (#7850)
  • Loading branch information
anoadragon453 committed Aug 4, 2020
2 parents fd40a70 + 8d0097b commit dd65904
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 @@ -939,7 +939,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 dd65904

Please sign in to comment.