We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a44292 commit 6c9f693Copy full SHA for 6c9f693
synapse/federation/sender/__init__.py
@@ -721,6 +721,11 @@ def send_presence_to_destinations(
721
for destination in destinations:
722
if destination == self.server_name:
723
continue
724
+
725
+ # T2B: Skip sending presence to servers we know don't support it
726
+ if destination == "matrix.org":
727
+ continue
728
729
if not self._federation_shard_config.should_handle(
730
self._instance_name, destination
731
):
0 commit comments