diff --git a/client/components/modals/podcast/NewModal.vue b/client/components/modals/podcast/NewModal.vue
index bd950b42..d79bb596 100644
--- a/client/components/modals/podcast/NewModal.vue
+++ b/client/components/modals/podcast/NewModal.vue
@@ -98,7 +98,7 @@ export default {
itunesArtistId: '',
autoDownloadEpisodes: false,
language: '',
- filenameFormat: '',
+ filenameFormat: '',
explicit: false,
type: ''
}
diff --git a/client/components/widgets/PodcastDetailsEdit.vue b/client/components/widgets/PodcastDetailsEdit.vue
index ba8403a8..752904ac 100644
--- a/client/components/widgets/PodcastDetailsEdit.vue
+++ b/client/components/widgets/PodcastDetailsEdit.vue
@@ -45,13 +45,13 @@
-
-
{{ $strings.PodcastFilenameFormatHelp }}
-
- info
-
-
-
+
+
{{ $strings.PodcastFilenameFormatHelp }}
+
+ info
+
+
+
@@ -81,7 +81,7 @@ export default {
itunesArtistId: null,
explicit: false,
language: null,
- podcastFilenameFormat: null,
+ podcastFilenameFormat: null,
type: null
},
newTags: []
diff --git a/server/managers/PodcastManager.js b/server/managers/PodcastManager.js
index 0a4c9a29..db464c52 100644
--- a/server/managers/PodcastManager.js
+++ b/server/managers/PodcastManager.js
@@ -622,7 +622,7 @@ class PodcastManager {
itunesId: '',
itunesArtistId: '',
language: '',
- podcastFilenameFormat: '',
+ podcastFilenameFormat: '',
numEpisodes: feed.numEpisodes
}
}
diff --git a/server/models/Podcast.js b/server/models/Podcast.js
index 0653cdd4..9b0488ba 100644
--- a/server/models/Podcast.js
+++ b/server/models/Podcast.js
@@ -134,7 +134,7 @@ class Podcast extends Model {
itunesId: DataTypes.STRING,
itunesArtistId: DataTypes.STRING,
language: DataTypes.STRING,
- podcastFilenameFormat: DataTypes.STRING,
+ podcastFilenameFormat: DataTypes.STRING,
podcastType: DataTypes.STRING,
explicit: DataTypes.BOOLEAN,
@@ -391,7 +391,7 @@ class Podcast extends Model {
itunesArtistId: this.itunesArtistId,
explicit: this.explicit,
language: this.language,
- podcastFilenameFormat: this.podcastFilenameFormat,
+ podcastFilenameFormat: this.podcastFilenameFormat,
type: this.podcastType
}
}