From e7de67edbea199ee6cef6929ce67a194b620e3b5 Mon Sep 17 00:00:00 2001 From: biast12 <53872542+biast12@users.noreply.github.com> Date: Thu, 27 Aug 2026 17:57:23 +0200 Subject: [PATCH] Update autoclose dashboard link Adjust the autoclose configuration command to send users to the dashboard panels page instead of the legacy settings route. --- bot/command/impl/settings/autocloseconfigure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/command/impl/settings/autocloseconfigure.go b/bot/command/impl/settings/autocloseconfigure.go index ca43aaf8..4b4f8991 100644 --- a/bot/command/impl/settings/autocloseconfigure.go +++ b/bot/command/impl/settings/autocloseconfigure.go @@ -33,5 +33,5 @@ func (c AutoCloseConfigureCommand) GetExecutor() interface{} { } func (AutoCloseConfigureCommand) Execute(ctx registry.CommandContext) { - ctx.Reply(customisation.Green, i18n.TitleAutoclose, i18n.MessageAutoCloseConfigure, fmt.Sprintf("%s/manage/%d/settings", config.Conf.Bot.DashboardUrl, ctx.GuildId())) + ctx.Reply(customisation.Green, i18n.TitleAutoclose, i18n.MessageAutoCloseConfigure, fmt.Sprintf("%s/manage/%d/panels", config.Conf.Bot.DashboardUrl, ctx.GuildId())) }