Skip to content

Commit

Permalink
fix(logic): remove chek okp4 scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux committed Mar 14, 2023
1 parent 4e45887 commit dc53827
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions x/logic/interpreter/fs/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ func (p *Parser) Parse(ctx context.Context, name string) ([]byte, error) {
return nil, err
}

if uri.Scheme != "okp4" {
return nil, fmt.Errorf("incompatible schema '%s' for %s", uri.Scheme, name)
}

for _, handler := range p.Handlers {
if handler.CanOpen(ctx, uri) {
return handler.Open(ctx, uri)
Expand Down

0 comments on commit dc53827

Please sign in to comment.