瀏覽代碼

delete blank line

Paul 6 年之前
父節點
當前提交
b994d74bff
共有 1 個檔案被更改,包括 0 行新增1 行删除
  1. 0
    1
      middleware/auth/auth.go

+ 0
- 1
middleware/auth/auth.go 查看文件

@@ -57,7 +57,6 @@ func Auth(authKey string, session Session) gin.HandlerFunc {
57 57
 				if expired == 0 && tokenFromCookie == "" {
58 58
 					if session.DeleteJwtToken(token.Raw) {
59 59
 						ctx.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"msg": "auth failed, token expired"})
60
-
61 60
 					} else {
62 61
 						ctx.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"msg": "auth failed, delete server token failed"})
63 62
 					}