diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-09-01 12:52:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 16:52:03 +0000 |
commit | 390b7ce946173b41a61f427ef25a9a1d0371ad0b (patch) | |
tree | e12dc10dc768de1e8d87fb73f6ac47b9f436ed25 /changelog.d | |
parent | Update the Grafana dashboard that is included with Synapse in the `contrib` d... (diff) | |
download | synapse-390b7ce946173b41a61f427ef25a9a1d0371ad0b.tar.xz |
Disable calculating unread counts unless the config flag is enabled. (#13694)
This avoids doing work that will never be used (since the resulting unread counts will never be sent in a /sync response). The negative of doing this is that unread counts will be incorrect when the feature is initially enabled.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13694.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13694.bugfix b/changelog.d/13694.bugfix new file mode 100644 index 0000000000..48b9bb5f0a --- /dev/null +++ b/changelog.d/13694.bugfix @@ -0,0 +1 @@ +Fix a bug introduced in Synapse v1.20.0 that would cause the unstable unread counts from [MSC2654](https://github.com/matrix-org/matrix-spec-proposals/pull/2654) to be calculated even if the feature is disabled. |