feat: update to Discord API v10

This commit is contained in:
spiral 2022-02-26 16:28:20 -05:00
parent 6a4033b2a9
commit 32a73eef09
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
13 changed files with 28 additions and 27 deletions

View file

@ -174,7 +174,7 @@ public static class ContextUtils
// Edit the embed with the new page
var embed = await MakeEmbedForPage(currentPage);
await ctx.Rest.EditMessage(msg.ChannelId, msg.Id, new MessageEditRequest { Embed = embed });
await ctx.Rest.EditMessage(msg.ChannelId, msg.Id, new MessageEditRequest { Embeds = new[] { embed } });
}
}
catch (TimeoutException)