diff --git a/client/components/modals/libraries/LibrarySettings.vue b/client/components/modals/libraries/LibrarySettings.vue
index 53eb2650..c62f769b 100644
--- a/client/components/modals/libraries/LibrarySettings.vue
+++ b/client/components/modals/libraries/LibrarySettings.vue
@@ -49,6 +49,9 @@
+
+
+
@@ -69,7 +72,8 @@ export default {
skipMatchingMediaWithAsin: false,
skipMatchingMediaWithIsbn: false,
audiobooksOnly: false,
- hideSingleBookSeries: false
+ hideSingleBookSeries: false,
+ podcastSearchRegion: 'us'
}
},
computed: {
@@ -85,6 +89,9 @@ export default {
isBookLibrary() {
return this.mediaType === 'book'
},
+ isPodcastLibrary() {
+ return this.mediaType === 'podcast'
+ },
providers() {
if (this.mediaType === 'podcast') return this.$store.state.scanners.podcastProviders
return this.$store.state.scanners.providers
@@ -99,7 +106,8 @@ export default {
skipMatchingMediaWithAsin: !!this.skipMatchingMediaWithAsin,
skipMatchingMediaWithIsbn: !!this.skipMatchingMediaWithIsbn,
audiobooksOnly: !!this.audiobooksOnly,
- hideSingleBookSeries: !!this.hideSingleBookSeries
+ hideSingleBookSeries: !!this.hideSingleBookSeries,
+ podcastSearchRegion: this.podcastSearchRegion
}
}
},
@@ -112,7 +120,8 @@ export default {
this.skipMatchingMediaWithAsin = !!this.librarySettings.skipMatchingMediaWithAsin
this.skipMatchingMediaWithIsbn = !!this.librarySettings.skipMatchingMediaWithIsbn
this.audiobooksOnly = !!this.librarySettings.audiobooksOnly
- this.hideSingleBookSeries = !!this.librarySettings.hideSingleBookSeries
+ this.hideSingleBookSeries = !!this.librarySettings.hideSingleBookSeries,
+ this.podcastSearchRegion = this.librarySettings.podcastSearchRegion
}
},
mounted() {
diff --git a/client/pages/config/index.vue b/client/pages/config/index.vue
index ccdbe2e4..12ce7b1e 100644
--- a/client/pages/config/index.vue
+++ b/client/pages/config/index.vue
@@ -135,10 +135,6 @@
-
- updateSettingsKey('podcastSearchRegion', val)" />
-
-