aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/http_loader.rs
diff options
context:
space:
mode:
authorBastien Orivel <eijebong@bananium.fr>2018-11-03 12:14:39 +0100
committerBastien Orivel <eijebong@bananium.fr>2018-11-09 21:04:31 +0100
commit36c4208f22872d996ee22b0202f313e7ba9cdacb (patch)
treef0001160eb3daaa75054349dd730842310d1fc07 /components/net/http_loader.rs
parent9a41af68a4ea03da0fb927830ddc8e80e3b1a924 (diff)
downloadservo-36c4208f22872d996ee22b0202f313e7ba9cdacb.tar.gz
servo-36c4208f22872d996ee22b0202f313e7ba9cdacb.zip
Update uuid
Diffstat (limited to 'components/net/http_loader.rs')
-rw-r--r--components/net/http_loader.rs2
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