summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-09-23 15:58:20 +0100
committerGitHub <noreply@github.com>2020-09-23 15:58:20 +0100
commit4bb203ea4fba54c0de300be84cfd9b38793fad81 (patch)
treec7f4371815c1ab895e4d3c2a68a0f685d51d1478 /changelog.d
parentDo not check lint/test dependencies at runtime. (#8377) (diff)
parentChangelog (diff)
downloadsynapse-4bb203ea4fba54c0de300be84cfd9b38793fad81.tar.xz
Fix missing null character check on guest_access room state (#8373)
When updating the `room_stats_state` table, we try to check for null bytes slipping in to the content for state events. It turns out we had added `guest_access` as a field to room_stats_state without including it in the null byte check.

Lo and behold, a null byte in a `m.room.guest_access` event then breaks `room_stats_state` updates.

This PR adds the check for `guest_access`.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8373.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8373.bugfix b/changelog.d/8373.bugfix
new file mode 100644
index 0000000000..e9d66a2088
--- /dev/null
+++ b/changelog.d/8373.bugfix
@@ -0,0 +1 @@
+Include `guest_access` in the fields that are checked for null bytes when updating `room_stats_state`. Broke in v1.7.2.
\ No newline at end of file