Skip to content

Commit

Permalink
fix for the GetApiList when order_key is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
madneal committed Dec 8, 2024
1 parent ef854cf commit 0461161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/sys_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func GetApiList(c *gin.Context) {
matchWhite = true
}
}
if !matchWhite {
if !matchWhite && pageInfo.OrderKey != "" {
response.FailWithMessage("请求参数非法", c)
return
}
Expand Down

0 comments on commit 0461161

Please sign in to comment.