Explorar el Código

Merge branch 'api_fix' into debug

zwxi hace 6 meses
padre
commit
e9258a4bdd
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      controllers/base_auth.go

+ 3 - 1
controllers/base_auth.go

@@ -209,7 +209,9 @@ func (c *BaseAuthController) Prepare() {
 			}
 			var api string
 			for _, v := range list {
-				api += v.Api + "&"
+				if v.Api != "" {
+					api += v.Api + "&"
+				}
 			}
 			//处理uri请求,去除前缀和参数
 			api = strings.TrimRight(api, "&")