Compare commits

..

1 Commits

Author SHA1 Message Date
Connor Johnstone 3cba8f88c1 fixed up the featured artist thing 2026-03-24 11:38:07 -04:00
+1 -3
View File
@@ -130,9 +130,7 @@ pub async fn index_file(
.modified()
.ok()
.and_then(|t| {
let duration = t
.duration_since(std::time::UNIX_EPOCH)
.unwrap_or_default();
let duration = t.duration_since(std::time::UNIX_EPOCH).unwrap_or_default();
chrono::DateTime::from_timestamp(duration.as_secs() as i64, 0)
})
.map(|dt| dt.naive_utc())