mirror of
https://github.com/usememos/memos.git
synced 2025-01-10 06:14:48 +08:00
chore: fix request path (#2014)
This commit is contained in:
parent
28203bbaf9
commit
04b7a26c03
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ func audienceContains(audience jwt.ClaimStrings, token string) bool {
|
|||
// will try to generate new access token and refresh token.
|
||||
func JWTMiddleware(server *APIV1Service, next echo.HandlerFunc, secret string) echo.HandlerFunc {
|
||||
return func(c echo.Context) error {
|
||||
path := c.Request().URL.Path
|
||||
path := c.Path()
|
||||
method := c.Request().Method
|
||||
|
||||
if server.defaultAuthSkipper(c) {
|
||||
|
|
Loading…
Reference in a new issue