fix: Properly check forbidden_remote_server_names for incoming requests

This commit is contained in:
Ginger
2026-05-20 12:39:39 -04:00
committed by Ellis Git
parent d5fc81d39e
commit 185f8c42dc
2 changed files with 16 additions and 9 deletions
+1 -5
View File
@@ -105,11 +105,7 @@ pub(crate) async fn banned_room_check(
return Err!(Request(Forbidden("This room is banned on this homeserver.")));
}
} else if let Some(server_name) = server_name {
if services
.config
.forbidden_remote_server_names
.is_match(server_name.host())
{
if services.moderation.is_remote_server_forbidden(server_name) {
warn!(
"User {user_id} who is not an admin tried joining a room which has the server \
name {server_name} that is globally forbidden. Rejecting.",