🐛 Fix mis use of Select function

This commit is contained in:
2025-08-05 21:38:12 +08:00
parent a793a03a20
commit 111701a2c4
2 changed files with 2 additions and 2 deletions

View File

@@ -271,7 +271,7 @@ public class RealmController(
.ToListAsync();
members = await rs.LoadMemberAccounts(members);
return Ok(members.Select(m => m.Account is not null).ToList());
return Ok(members.Where(m => m.Account is not null).ToList());
// }
}