Skip to content

Commit 1d831af

Browse files
authored
[NAPI] fix nullable (#103)
1 parent b324061 commit 1d831af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lagrange.Core.NativeAPI/NativeModel/Event/BotGroupMemberIncreaseEventStruct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static implicit operator BotGroupMemberIncreaseEventStruct(BotGroupMember
2626
MemberUin = e.MemberUin,
2727
InvitorUin = e.InvitorUin,
2828
Type = e.Type,
29-
OperatorUin = e.OperatorUin ?? 0
29+
OperatorUin = e.OperatorUin
3030
};
3131
}
3232
}

0 commit comments

Comments
 (0)