From 909fe173c2d4fbffa198e9a293b5e24de6527516 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 27 Sep 2025 19:28:47 +0800 Subject: [PATCH] :bug: Fix function changes not fully applied --- DysonNetwork.Sphere/Chat/ChatService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DysonNetwork.Sphere/Chat/ChatService.cs b/DysonNetwork.Sphere/Chat/ChatService.cs index 14248bb..7561c3c 100644 --- a/DysonNetwork.Sphere/Chat/ChatService.cs +++ b/DysonNetwork.Sphere/Chat/ChatService.cs @@ -284,7 +284,7 @@ public partial class ChatService( var subscribedMemberIds = new List(); foreach (var member in members) { - if (await scopedCrs.IsSubscribedChatRoom(member.Id)) + if (await scopedCrs.IsSubscribedChatRoom(member.ChatRoomId, member.Id)) subscribedMemberIds.Add(member.AccountId); } accountsToNotify = accountsToNotify.Where(a => !subscribedMemberIds.Contains(Guid.Parse(a.Id))).ToList();