From 0f6255947e9f6156a8e82bea6ed358e387df826c Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 30 Oct 2024 13:16:04 +0000 Subject: [PATCH] fix: fixed ubl pagination --- .../Modules/Permissions/Blacklist/BlacklistCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Permissions/Blacklist/BlacklistCommands.cs b/src/NadekoBot/Modules/Permissions/Blacklist/BlacklistCommands.cs index 47855d0ce..4dc5658a1 100644 --- a/src/NadekoBot/Modules/Permissions/Blacklist/BlacklistCommands.cs +++ b/src/NadekoBot/Modules/Permissions/Blacklist/BlacklistCommands.cs @@ -67,7 +67,7 @@ public partial class Permissions return _sender.CreateEmbed() .WithTitle(title) - .WithDescription(allItems.Join('\n')) + .WithDescription(pageItems.Join('\n')) .WithOkColor(); }) .SendAsync();