fixed up the featured artist thing

This commit is contained in:
Connor Johnstone
2026-03-24 11:38:07 -04:00
parent 9d1366f266
commit 3cba8f88c1
+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())