diff --git a/src/Discord.Net.WebSocket/Entities/AppSubscriptions/SocketEntitlement.cs b/src/Discord.Net.WebSocket/Entities/AppSubscriptions/SocketEntitlement.cs index a4b71d9299..9c074c1e49 100644 --- a/src/Discord.Net.WebSocket/Entities/AppSubscriptions/SocketEntitlement.cs +++ b/src/Discord.Net.WebSocket/Entities/AppSubscriptions/SocketEntitlement.cs @@ -68,9 +68,7 @@ internal void Update(Model model) ApplicationId = model.ApplicationId; Type = model.Type; IsConsumed = model.IsConsumed.GetValueOrDefault(false); - StartsAt = model.StartsAt.IsSpecified - ? model.StartsAt.Value - : null; + StartsAt = model.StartsAt; EndsAt = model.EndsAt.IsSpecified ? model.EndsAt.Value : null;