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 ab1de55a1c9..0ef715361fe 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -1166,7 +1166,7 @@ fn http_network_fetch( let request_id = context .devtools_chan .as_ref() - .map(|_| uuid::Uuid::new_v4().simple().to_string()); + .map(|_| uuid::Uuid::new_v4().to_simple().to_string()); // XHR uses the default destination; other kinds of fetches (which haven't been implemented yet) // do not. Once we support other kinds of fetches we'll need to be more fine grained here |