From f1a0e54c04f9ce8d5f853d8be9e2fccc78e423dd Mon Sep 17 00:00:00 2001 From: MagiX13 Date: Sat, 24 May 2025 20:46:11 +0200 Subject: [PATCH] further linting --- client/components/modals/podcast/NewModal.vue | 2 +- client/components/widgets/PodcastDetailsEdit.vue | 16 ++++++++-------- server/managers/PodcastManager.js | 2 +- server/models/Podcast.js | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) 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 } }