Rename DevFastAccessCoverArt to EnableMediaFileCoverArt

This commit is contained in:
Deluan 2022-12-27 14:30:00 -05:00 committed by Deluan Quintão
parent 722a00cacf
commit 332900774d
6 changed files with 14 additions and 17 deletions

View file

@ -30,6 +30,7 @@ type configOptions struct {
EnableTranscodingConfig bool
EnableDownloads bool
EnableExternalServices bool
EnableMediaFileCoverArt bool
TranscodingCacheSize string
ImageCacheSize string
AutoImportPlaylists bool
@ -76,7 +77,6 @@ type configOptions struct {
DevLogLevels map[string]string
DevAutoCreateAdminPassword string
DevAutoLoginUsername string
DevFastAccessCoverArt bool
DevActivityPanel bool
DevEnableShare bool
DevSidebarPlaylists bool
@ -228,6 +228,7 @@ func init() {
viper.SetDefault("playlistspath", consts.DefaultPlaylistsPath)
viper.SetDefault("enabledownloads", true)
viper.SetDefault("enableexternalservices", true)
viper.SetDefault("enableMediaFileCoverArt", true)
viper.SetDefault("autotranscodedownload", false)
// Config options only valid for file/env configuration
@ -278,7 +279,6 @@ func init() {
viper.SetDefault("devlogsourceline", false)
viper.SetDefault("devautocreateadminpassword", "")
viper.SetDefault("devautologinusername", "")
viper.SetDefault("devfastaccesscoverart", false)
viper.SetDefault("devactivitypanel", true)
viper.SetDefault("devenableshare", false)
viper.SetDefault("devenablebufferedscrobble", true)