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

This commit is contained in:
Jade 2025-11-10 23:56:02 +00:00 committed by Ellis Git
parent c0b617f4f1
commit 45e4053883
No known key found for this signature in database
GPG key ID: A5A33729097D7410

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(),