From d249532473129a12f7caddcdf276a9273b00fc4b Mon Sep 17 00:00:00 2001 From: tbphp Date: Mon, 29 Sep 2025 20:19:34 +0800 Subject: [PATCH] fix: Redirect address after successful tg binding --- controller/telegram.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/telegram.go b/controller/telegram.go index 8d07fc940..2b1ec4fcf 100644 --- a/controller/telegram.go +++ b/controller/telegram.go @@ -65,7 +65,7 @@ func TelegramBind(c *gin.Context) { return } - c.Redirect(302, "/setting") + c.Redirect(302, "/console/personal") } func TelegramLogin(c *gin.Context) {