fix playlist grey page

This commit is contained in:
Victor TInoco 2023-09-10 02:04:51 -05:00
parent 3426100baf
commit 937e2e5a5c

View File

@ -149,7 +149,7 @@ class PlaylistQueries {
);
}
return spotify.playlists.getTracksByPlaylistId(playlistId).all().then(
(value) => value.toList(),
(value) => value.where((track) => track.id != null).toList(),
);
}