Skip to content

Commit

Permalink
Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Sep 25, 2023
1 parent 96f95b3 commit d2a6be0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ public NexusApiVerify(Client client, IAuthenticatingMessageFactory messageFactor
public async Task<int> Run(CancellationToken token)
{
var userInfo = await _messageFactory.Verify(_client, token);
await Renderer.Render(new Table(new[] { "Name", "Premium", "Supporter" },
await Renderer.Render(new Table(new[] { "Name", "Premium" },
new[]
{
new object[]
{
userInfo?.Name ?? "<Not logged in>",
userInfo?.IsPremium ?? false,
userInfo?.IsSupporter ?? false,
}
}));

Expand Down

0 comments on commit d2a6be0

Please sign in to comment.