Skip to content

Commit

Permalink
fix: differentiate between searched podcasts with same name
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann committed Aug 23, 2022
1 parent 3568f83 commit 480ac21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/settings/PodcastQueryGrid.svelte
Expand Up @@ -72,7 +72,7 @@
{#each searchResults as podcast}
<PodcastResultCard
{podcast}
isSaved={$savedFeeds[podcast.title] !== undefined}
isSaved={$savedFeeds[podcast.title]?.url === podcast.url}
on:addPodcast={addPodcast}
on:removePodcast={removePodcast}
/>
Expand Down

0 comments on commit 480ac21

Please sign in to comment.