summary refs log tree commit diff
path: root/changelog.d/17231.bugfix
diff options
context:
space:
mode:
authorMichael Hollister <michael.s.hollister@protonmail.com>2024-07-23 04:59:24 -0500
committerGitHub <noreply@github.com>2024-07-23 09:59:24 +0000
commita9ee832e4899fefcfd27fba475091e1ffaa069b8 (patch)
tree5e5922d2aaf6c388150a978905bc001653b954ab /changelog.d/17231.bugfix
parentBump hiredis from 2.3.2 to 3.0.0 (#17464) (diff)
downloadsynapse-a9ee832e4899fefcfd27fba475091e1ffaa069b8.tar.xz
Fixed presence results not returning offline users on initial sync (#17231)
This is to address an issue in which `m.presence` results on initial
sync are not returning entries of users who are currently offline.

The original behaviour was from
https://github.com/element-hq/synapse/issues/1535

This change is useful for applications that use the
presence system for tracking user profile information/updates (e.g.
https://github.com/element-hq/synapse/pull/16992 or for profile status
messages).

This is gated behind a new configuration option to avoid performance
impact for applications that don't need this, as a pragmatic solution
for now.
Diffstat (limited to 'changelog.d/17231.bugfix')
-rw-r--r--changelog.d/17231.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17231.bugfix b/changelog.d/17231.bugfix
new file mode 100644
index 0000000000..d09b455654
--- /dev/null
+++ b/changelog.d/17231.bugfix
@@ -0,0 +1 @@
+Added configurable option to always include offline users in presence sync results. Contributed by @Michael-Hollister.