fix: false positive middleware

This commit is contained in:
skeris 2024-07-20 16:45:04 +03:00
parent 4d1ba804b6
commit 9584c17c20

@ -22,7 +22,7 @@ func NewAuthenticator(jwtUtil *JWT) func(*fiber.Ctx) error {
return fmt.Errorf("authentication error:%d", err)
}
return nil
return c.Next()
}
}