From ba4f585318ad8f6e2ff99f7f4f0bd5545a4a13be Mon Sep 17 00:00:00 2001 From: advplyr <67830747+advplyr@users.noreply.github.com> Date: Fri, 24 Feb 2023 17:57:25 -0600 Subject: [PATCH] Update client/pages/library/_library/podcast/search.vue --- client/pages/library/_library/podcast/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pages/library/_library/podcast/search.vue b/client/pages/library/_library/podcast/search.vue index d1d15775..bef8280b 100644 --- a/client/pages/library/_library/podcast/search.vue +++ b/client/pages/library/_library/podcast/search.vue @@ -152,7 +152,7 @@ export default { }) console.log('Got results', results) for (let result of results) { - let podcast = this.existentPodcasts.find((p) => p.itunesId === result.id || p.title === result.title.toLowerCase()); + let podcast = this.existentPodcasts.find((p) => p.itunesId === result.id || p.title === result.title.toLowerCase()) if (podcast) { result.alreadyInLibrary = true }