diff --git a/scope/scope.go b/scope/scope.go index 105c7b77..f13236db 100644 --- a/scope/scope.go +++ b/scope/scope.go @@ -41,6 +41,9 @@ func (s Scopes) Contains(other Scopes) bool { for _, scope := range other { if _, ok := rScopes[scope]; !ok { + if scope == "" { + continue + } return false } }