diff --git a/lib/routes/spotify/show.ts b/lib/routes/spotify/show.ts index 20e14c792..352b058c2 100644 --- a/lib/routes/spotify/show.ts +++ b/lib/routes/spotify/show.ts @@ -58,7 +58,7 @@ async function handler(ctx) { itunes_category: meta.type, itunes_explicit: meta.explicit, allowEmpty: true, - item: episodes.map((x) => ({ + item: episodes.filter(Boolean).map((x) => ({ title: x.name, description: x.html_description, pubDate: parseDate(x.release_date),