Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NetCord/Gateway/EventArgs/ReadyEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public class ReadyEventArgs : IJsonModel<JsonModels.EventArgs.JsonReadyEventArgs

public Shard? Shard => _jsonModel.Shard;

public ulong ApplicationId => _jsonModel.Application is null ? default : _jsonModel.Application.Id;
public ulong ApplicationId => _jsonModel.Application.Id;

public ApplicationFlags ApplicationFlags => _jsonModel.Application is null ? default : _jsonModel.Application.Flags.GetValueOrDefault();
public ApplicationFlags ApplicationFlags => _jsonModel.Application.Flags.GetValueOrDefault();

public ReadyEventArgs(JsonModels.EventArgs.JsonReadyEventArgs jsonModel, RestClient client)
{
Expand Down
Loading
Loading