fix(types): return artist's song remote cover url

This commit is contained in:
Tsiry Sandratraina
2023-01-10 21:49:21 +03:00
parent 0c9b06325d
commit 5363f3693a

View File

@@ -477,6 +477,11 @@ impl RemoteCoverUrl for Artist {
.iter()
.map(|album| album.with_remote_cover_url(base_url))
.collect(),
songs: self
.songs
.iter()
.map(|track| track.with_remote_cover_url(base_url))
.collect(),
..self.clone()
}
}