1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00

Replaced legacy chrome-devtools:// scheme. (#7659)

The legacy chrome-devtools scheme was removed from the Chromium codebase.  The new scheme is simply "devtools://"
6700d12448
This commit is contained in:
Will 2020-09-24 15:06:46 -07:00 committed by GitHub
parent 9c75e4876f
commit 7726cfb932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
)
}