🐛 Fix list members of chat and realm didn't show invite

This commit is contained in:
2025-12-24 21:38:55 +08:00
parent 885b895a3a
commit bca6a2ffde
2 changed files with 9 additions and 5 deletions

View File

@@ -242,9 +242,10 @@ public class RealmController(
return StatusCode(403, "You must be a member to view this realm's members.");
}
// The query should include the unjoined ones, to show the invites.
var query = db.RealmMembers
.Where(m => m.RealmId == realm.Id)
.Where(m => m.JoinedAt != null && m.LeaveAt == null);
.Where(m => m.LeaveAt == null);
if (withStatus)
{