fix: Don't break when encountering the server user, as there may be real users after
This commit is contained in:
parent
c0b617f4f1
commit
45e4053883
1 changed files with 1 additions and 1 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue