Compare commits

...

2 commits

Author SHA1 Message Date
6a3dbf3e45
chore: cargo update
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2023-11-27 01:40:26 +02:00
2f8d2a1b3c
fix: a small bug with child formatting 2023-11-27 01:15:48 +02:00
2 changed files with 367 additions and 153 deletions

518
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -79,7 +79,7 @@ impl Child {
.created
.format(&Iso8601::DEFAULT)
.expect("Failed to format date"),
album_id: Some(format!("al-{}", album.id)),
album_id: Some(album.id.clone()),
artist_id: track.artist_id.map(|v| format!("ar-{v}",)),
artist: artist.name.clone(),
child_type: "music".to_string(),