diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-10-10 10:06:45 +0100 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-10-10 10:06:45 +0100 |
commit | da815c1f695ceca56643d7814c96f7a3cfa3c70a (patch) | |
tree | 42cef96895528370595ebc6e631346aa7ea38414 /changelog.d | |
parent | Refactor HomeserverConfig so it can be typechecked (#6137) (diff) | |
download | synapse-da815c1f695ceca56643d7814c96f7a3cfa3c70a.tar.xz |
Move tag/push rules room upgrade checking ealier (#6155)
It turns out that _local_membership_update doesn't run when you join a new, remote room. It only runs if you're joining a room that your server already knows about. This would explain #4703 and #5295 and why the transfer would work in testing and some rooms, but not others. This would especially hit single-user homeservers. The check has been moved to right after the room has been joined, and works much more reliably. (Though it may still be a bit awkward of a place).
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/6155.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/6155.bugfix b/changelog.d/6155.bugfix new file mode 100644 index 0000000000..e32c0dce09 --- /dev/null +++ b/changelog.d/6155.bugfix @@ -0,0 +1 @@ +Fix transferring notifications and tags when joining an upgraded room that is new to your server. \ No newline at end of file |