diff --git a/cors_filter.go b/cors_filter.go index 1efeef07..d6e7c857 100644 --- a/cors_filter.go +++ b/cors_filter.go @@ -184,6 +184,9 @@ func (c CrossOriginResourceSharing) isValidAccessControlRequestHeader(header str if strings.ToLower(each) == strings.ToLower(header) { return true } + if each == "*" { + return true + } } return false }