diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-12-02 10:28:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 10:28:41 -0500 |
commit | fac8a38525387e344e3595a092578e0ffedd49ae (patch) | |
tree | 0969d1222b23d9d15267b0d4e2cff2aadeeb6b62 /changelog.d | |
parent | Update worker docs to update preferred settings for pusher and federation_sen... (diff) | |
download | synapse-fac8a38525387e344e3595a092578e0ffedd49ae.tar.xz |
Properly handle unknown results for the stream change cache. (#14592)
StreamChangeCache.get_all_changed_entities can return None to signify it does not have information at the given stream position. Two callers (related to device lists and presence) were treating this response the same as an empty list (i.e. there being no updates).
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/14592.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14592.bugfix b/changelog.d/14592.bugfix new file mode 100644 index 0000000000..149ee99dd7 --- /dev/null +++ b/changelog.d/14592.bugfix @@ -0,0 +1 @@ +Fix a long-standing bug where a device list update might not be sent to clients in certain circumstances. |