diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-02-28 17:40:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 17:40:24 +0000 |
commit | 6c0b44a3d73f73dc5913f081418347645dc84d6f (patch) | |
tree | c5f902578af302b30d2be221fea51c49731f5b32 /changelog.d | |
parent | Actually fix bad debug logging rejecting device list & signing key transactio... (diff) | |
download | synapse-6c0b44a3d73f73dc5913f081418347645dc84d6f.tar.xz |
Fix `PushRuleEvaluator` and `Filter` to work on frozendicts (#12100)
* Fix `PushRuleEvaluator` to work on frozendicts frozendicts do not (necessarily) inherit from dict, so this needs to handle them correctly. * Fix event filtering for frozen events Looks like this one was introduced by #11194.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12100.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12100.bugfix b/changelog.d/12100.bugfix new file mode 100644 index 0000000000..181095ad99 --- /dev/null +++ b/changelog.d/12100.bugfix @@ -0,0 +1 @@ +Fix a long-standing bug which could cause push notifications to malfunction if `use_frozen_dicts` was set in the configuration. |