Update dependencies

This commit is contained in:
Wim
2023-03-09 22:35:14 +01:00
parent 23536146a6
commit 1b211f4c1f
345 changed files with 151040 additions and 125983 deletions

View File

@@ -119,9 +119,9 @@ func CSRFWithConfig(config CSRFConfig) echo.MiddlewareFunc {
config.CookieSecure = true
}
extractors, err := CreateExtractors(config.TokenLookup)
if err != nil {
panic(err)
extractors, cErr := CreateExtractors(config.TokenLookup)
if cErr != nil {
panic(cErr)
}
return func(next echo.HandlerFunc) echo.HandlerFunc {