diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-01-06 13:22:38 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 13:22:38 +1100 |
commit | 54240c22af6233d1d977d469868b0d9050cad6da (patch) | |
tree | 81af9892f8728852387fad9c2d243ab933de927f /cli/program_state.rs | |
parent | 60c9c857584bf5180dd0f7b937683dd9691aef84 (diff) |
feat(cli): support data urls (#8866)
Closes: #5059
Co-authored-by: Valentin Anger <syrupthinker@gryphno.de>
Diffstat (limited to 'cli/program_state.rs')
-rw-r--r-- | cli/program_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/program_state.rs b/cli/program_state.rs index dfe8aa6c3..896f4d7b4 100644 --- a/cli/program_state.rs +++ b/cli/program_state.rs @@ -252,7 +252,7 @@ impl ProgramState { match url.scheme() { // we should only be looking for emits for schemes that denote external // modules, which the disk_cache supports - "wasm" | "file" | "http" | "https" => (), + "wasm" | "file" | "http" | "https" | "data" => (), _ => { return None; } |