From 496d07455a1be84e417fc4e9e0714a36f63e9f9a Mon Sep 17 00:00:00 2001 From: Emilia Date: Thu, 13 Jul 2023 14:46:11 -0400 Subject: [PATCH] Fetch image urls for albums --- server/src/spotify_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/spotify_types.rs b/server/src/spotify_types.rs index aa67dce..b903faa 100644 --- a/server/src/spotify_types.rs +++ b/server/src/spotify_types.rs @@ -22,6 +22,7 @@ pub struct AlbumObject { pub release_date: String, pub uri: Uri, pub genres: Option, + pub images: Vec, } #[derive(Deserialize, Serialize, Debug, Clone)]