From 0cdfebd1dcd9c067fcc02faff126e1586ceb7cd7 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Mar 2026 20:36:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=86=E4=BA=AB=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E5=8E=BB=E9=99=A4=E5=89=8D=E5=AF=BC=E6=96=9C=E6=9D=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/smoke/handler/smoke_share_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/smoke/handler/smoke_share_handler.go b/internal/smoke/handler/smoke_share_handler.go index bb3942a..34a0252 100644 --- a/internal/smoke/handler/smoke_share_handler.go +++ b/internal/smoke/handler/smoke_share_handler.go @@ -43,7 +43,7 @@ func (h *SmokeHandler) CreateShare(c *gin.Context) { c.JSON(http.StatusOK, model.Success(gin.H{ "share_token": share.ShareToken, "expire_at": share.ExpireAt.Format(time.RFC3339), - "share_path": fmt.Sprintf("/pages/share/index?share_token=%s", share.ShareToken), + "share_path": fmt.Sprintf("pages/share/index?share_token=%s", share.ShareToken), })) }