File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -929,11 +929,12 @@ fn transform_user(
929929fn is_likely_appservice ( localpart : & str ) -> bool {
930930 // HACK(matrix.org): These are the namespaces we use on matrix.org
931931 localpart. starts_with ( '_' )
932- || localpart. starts_with ( "freenode_" )
933- || localpart. starts_with ( "slack_" )
934- || localpart. starts_with ( "torn_" )
935- || localpart. starts_with ( "gitter_" )
936- || localpart. starts_with ( "mozilla_" )
932+ || localpart. starts_with ( "freenode_" ) // Freenode IRC bridge
933+ || localpart. starts_with ( "slack_" ) // Slack bridge
934+ || localpart. starts_with ( "torn_" ) // Torn IRC bridge
935+ || localpart. starts_with ( "gitter_" ) // Gitter bridge
936+ || localpart. starts_with ( "mozilla_" ) // Mozilla IRC bridge
937+ || localpart. starts_with ( "fs_" ) // VoIP conference AS
937938 // HACK(matrix.org): Sender localparts of those appservices
938939 || localpart == "bifrost"
939940 || localpart == "appservice-irc"
You can’t perform that action at this time.
0 commit comments