🐛 Fix sending notification didn't set culture info for localization

This commit is contained in:
2025-06-05 00:20:54 +08:00
parent a98bfec86f
commit f961469db1
6 changed files with 18 additions and 4 deletions

View File

@ -741,6 +741,7 @@ public class ChatRoomController(
? localizer["ChatInviteDirectBody", sender.Nick]
: localizer["ChatInviteBody", member.ChatRoom.Name ?? "Unnamed"];
AccountService.SetCultureInfo(member.Account);
await nty.SendNotification(member.Account, "invites.chats", title, null, body);
}
}