Skip to content

Commit

Permalink
Replaced legacy chrome-devtools:// scheme. (denoland#7659)
Browse files Browse the repository at this point in the history
The legacy chrome-devtools scheme was removed from the Chromium codebase.  The new scheme is simply "devtools://"
https://chromium.googlesource.com/chromium/src/+/6700d12448f76712c62a6d2372a95b97a26d4779
  • Loading branch information
june07 committed Sep 24, 2020
1 parent 9c75e48 commit 7726cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/inspector.rs
Expand Up @@ -116,7 +116,7 @@ impl InspectorInfo {

fn get_frontend_url(&self) -> String {
format!(
"chrome-devtools://devtools/bundled/inspector.html?v8only=true&ws={}/ws/{}",
"devtools://devtools/bundled/inspector.html?v8only=true&ws={}/ws/{}",
&self.host, &self.uuid
)
}
Expand Down

0 comments on commit 7726cfb

Please sign in to comment.