From 379c1c9b88244a3ef0bcd351dd0a3d446609f021 Mon Sep 17 00:00:00 2001 From: MaxCrazy1101 <35657483+MaxCrazy1101@users.noreply.github.com> Date: Sat, 31 Jan 2026 00:31:16 +0800 Subject: [PATCH] fix: GroupNudgeData miss display_action --- Lagrange.Milky/Entity/Event/GroupNudgeEvent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lagrange.Milky/Entity/Event/GroupNudgeEvent.cs b/Lagrange.Milky/Entity/Event/GroupNudgeEvent.cs index 59e85123..7267fbe2 100644 --- a/Lagrange.Milky/Entity/Event/GroupNudgeEvent.cs +++ b/Lagrange.Milky/Entity/Event/GroupNudgeEvent.cs @@ -16,7 +16,7 @@ public class GroupNudgeEventData(long groupID, long senderId, long receiverId, s public long ReceiverID { get; } = receiverId; [JsonPropertyName("display_action")] - public string DisplayAction = displayAction; + public string DisplayAction { get; } = displayAction; [JsonPropertyName("display_suffix")] public string DisplaySuffix { get; } = displaySuffix;