This commit is contained in:
2026-01-30 22:15:17 -08:00
parent d1d95618ad
commit 16c261bd36
8 changed files with 205 additions and 180 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ func SubscribeHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
l := subscribe.NewSubscribeLogic(c, svcCtx)
resp, err := l.Handler(&req)
if err != nil {
c.String(http.StatusInternalServerError, "Internal Server")
c.String(http.StatusInternalServerError, err.Error())
return
}
c.Header("subscription-userinfo", resp.Header)