include timestamp in audio title

This commit is contained in:
xenofem 2023-07-30 01:23:45 -04:00
parent e5a05881e9
commit e4be6d9588

View file

@ -152,7 +152,7 @@ async fn post_random_capture<R: Rng>(
String::from("audio/mpeg"), String::from("audio/mpeg"),
eggbug::MediaMetadata::Audio { eggbug::MediaMetadata::Audio {
artist: show.title.clone(), artist: show.title.clone(),
title: descriptor.clone(), title: format!("{} @{}", descriptor, formatted_timestamp),
}, },
); );