diff --git a/server/chroma/src/routes/v1/album/list.rs b/server/chroma/src/routes/v1/album/list.rs index 49aeaca..adc1a6e 100644 --- a/server/chroma/src/routes/v1/album/list.rs +++ b/server/chroma/src/routes/v1/album/list.rs @@ -65,11 +65,13 @@ pub async fn list( .await; // Merge the two sets - let mut albums = [fetched_albums, + let mut albums = [ + fetched_albums, cached_albums .into_iter() .filter_map(|(_, v)| v) - .collect::>()] + .collect::>(), + ] .concat(); // Check if we should include draft albums