From 9c3f5406a9c089e45c1bba58f9b420945d003a3c Mon Sep 17 00:00:00 2001 From: advplyr <67830747+advplyr@users.noreply.github.com> Date: Wed, 22 Feb 2023 17:36:42 -0600 Subject: [PATCH] Update client/components/modals/podcast/NewModal.vue --- client/components/modals/podcast/NewModal.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/components/modals/podcast/NewModal.vue b/client/components/modals/podcast/NewModal.vue index e64beb4c..bdfa56e4 100644 --- a/client/components/modals/podcast/NewModal.vue +++ b/client/components/modals/podcast/NewModal.vue @@ -219,10 +219,7 @@ export default { this.podcast.language = this._podcastData.language || this.feedMetadata.language || '' this.podcast.autoDownloadEpisodes = false - if (this._podcastData.explicit === 'yes' || this._podcastData.explicit == 'true' || this.feedMetadata.explicit === 'yes' || this.feedMetadata.explicit == 'true') { - this.podcast.explicit = true - } else this.podcast.explicit = false - + this.podcast.explicit = this._podcastData.explicit || this.feedMetadata.explicit === 'yes' || this.feedMetadata.explicit == 'true' if (this.folderItems[0]) { this.selectedFolderId = this.folderItems[0].value this.folderUpdated()