summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-01-25 16:34:37 -0500
committerGitHub <noreply@github.com>2023-01-25 21:34:37 +0000
commit7e8d455280b58dbda3ff24b19dbffad2d6c6c253 (patch)
treec7760cdcfdea711c5fa53b6efe051904193177ca /changelog.d
parentAdd missing type hints for tests.events. (#14904) (diff)
downloadsynapse-7e8d455280b58dbda3ff24b19dbffad2d6c6c253.tar.xz
Fix a bug in the send_local_online_presence_to module API (#14880)
Destination was being used incorrectly (a single destination instead
of a list of destinations was being passed).

This also updates some of the types in the area to not use Collection[str],
which is a footgun.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/14880.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14880.bugfix b/changelog.d/14880.bugfix
new file mode 100644
index 0000000000..e56c567082
--- /dev/null
+++ b/changelog.d/14880.bugfix
@@ -0,0 +1 @@
+Fix a bug when using the `send_local_online_presence_to` module API.