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.
2 parents 087f000 + 6743d99 commit 35cd7f8Copy full SHA for 35cd7f8
synapse/appservice/__init__.py
@@ -150,6 +150,11 @@ async def _matches_user(
150
if not event:
151
return False
152
153
+ # Beeper Hack
154
+ # Don't bother sending events for bridged users, the bridge presumably already knows this happened.
155
+ if event.sender.startswith("@_"):
156
+ return False
157
+
158
if self.is_interested_in_user(event.sender):
159
return True
160
# also check m.room.member state key
0 commit comments