🐛 Fix chat notification and listing members

This commit is contained in:
2025-05-30 23:02:55 +08:00
parent 472221302d
commit a0cd779f85
3 changed files with 13 additions and 26 deletions

View File

@ -98,7 +98,7 @@ public class ChatService(
});
// Only add accounts that aren't null
if (member.AccountId != sender.AccountId)
if (member.Account.Id != sender.AccountId)
accountsToNotify.Add(member.Account);
}