fix: Don't break when encountering the server user, as there may be real users after

(cherry picked from commit 45e4053883)
This commit is contained in:
Jade 2025-11-10 23:56:02 +00:00 committed by timedout
parent 55df764af2
commit bdcd08dd01
No known key found for this signature in database
GPG key ID: 0FA334385D0B689F

View file

@ -78,7 +78,7 @@ pub(crate) async fn well_known_support(
while let Some(user_id) = stream.next().await {
// Skip server user
if *user_id == services.globals.server_user {
break;
continue;
}
contacts.push(Contact {
role: role_value.clone(),