aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/handlers/feeds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers/feeds.rs b/src/handlers/feeds.rs
index a0d711f..bc3d861 100644
--- a/src/handlers/feeds.rs
+++ b/src/handlers/feeds.rs
@@ -16,7 +16,7 @@ lazy_static! {
&["kind"]
)
.unwrap();
- pub static ref ETAG: String = format!(r#"W/"{}""#, uuid::Uuid::new_v4().to_simple());
+ pub static ref ETAG: String = format!(r#"W/"{}""#, uuid::Uuid::new_v4().to_string().replace("-", ""));
pub static ref CACHEBUSTER: String = uuid::Uuid::new_v4().to_string().replace("-", "");
}