diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-10-16 20:37:16 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-10-16 21:10:04 +0100 |
commit | fc0f13dd036cec4e41f5969d021d9dd10d6e5016 (patch) | |
tree | 27c5a9a0c125ef8f8c00420f21ed1d4dade3b31c /changelog.d | |
parent | Various cleanups in the federation client code (#4031) (diff) | |
download | synapse-fc0f13dd036cec4e41f5969d021d9dd10d6e5016.tar.xz |
Fix incorrect truncation in get_missing_events
It's quite important that get_missing_events returns the *latest* events in the room; however we were pulling event ids out of the database until we got *at least* 10, and then taking the *earliest* of the results. We also shouldn't really be relying on depth, and should be checking the room_id.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/4045.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/4045.bugfix b/changelog.d/4045.bugfix new file mode 100644 index 0000000000..fa50eb5aff --- /dev/null +++ b/changelog.d/4045.bugfix @@ -0,0 +1 @@ +Fix bug which made get_missing_events return too few events \ No newline at end of file |