diff options
Diffstat (limited to 'components/net/http_loader.rs')
-rw-r--r-- | components/net/http_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs index f79f67ce1d9..6a12100f3d1 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -1683,7 +1683,7 @@ async fn http_network_fetch( let request_id = context .devtools_chan .as_ref() - .map(|_| uuid::Uuid::new_v4().to_simple().to_string()); + .map(|_| uuid::Uuid::new_v4().simple().to_string()); if log_enabled!(log::Level::Info) { info!("{:?} request for {}", request.method, url); |