diff --git a/src/Discord.Addons.Paginator/PaginationService.cs b/src/Discord.Addons.Paginator/PaginationService.cs index a27abd3..d31c6bd 100644 --- a/src/Discord.Addons.Paginator/PaginationService.cs +++ b/src/Discord.Addons.Paginator/PaginationService.cs @@ -134,7 +134,9 @@ internal async Task OnReactionAdded(Cacheable messageParam, public class PaginatedMessage { public PaginatedMessage(IEnumerable pages, string title = "", Color? embedColor = null, IUser user = null, AppearanceOptions options = null) - => new PaginatedMessage(pages.Select(x => new Page { Description = x }), title, embedColor, user, options); + : this(pages.Select(x => new Page { Description = x }), title, embedColor, user, options) + { + } public PaginatedMessage(IEnumerable pages, string title = "", Color? embedColor = null, IUser user = null, AppearanceOptions options = null) { var embeds = new List();