diff options
author | Will <11353590+june07@users.noreply.github.com> | 2020-09-24 15:06:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 18:06:46 -0400 |
commit | 7726cfb93243932a07107f67b87032adb40abdc0 (patch) | |
tree | 61260502b139f3b3ad9f61e964ab1ac37f27ded1 /cli/inspector.rs | |
parent | 9c75e4876f68b36cb8a79bfe5a734d2783c527ce (diff) |
Replaced legacy chrome-devtools:// scheme. (#7659)
The legacy chrome-devtools scheme was removed from the Chromium codebase. The new scheme is simply "devtools://"
https://chromium.googlesource.com/chromium/src/+/6700d12448f76712c62a6d2372a95b97a26d4779
Diffstat (limited to 'cli/inspector.rs')
-rw-r--r-- | cli/inspector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/inspector.rs b/cli/inspector.rs index b94da69a3..11d9a8ba0 100644 --- a/cli/inspector.rs +++ b/cli/inspector.rs @@ -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 ) } |