Make new cache layout the default

This commit is contained in:
Deluan 2020-11-04 23:25:38 -05:00
parent 861c742b3e
commit a6bd9f627e
2 changed files with 6 additions and 6 deletions

View file

@ -50,7 +50,7 @@ type configOptions struct {
DevAutoCreateAdminPassword string
DevPreCacheAlbumArtwork bool
DevDisableTrackCoverArt bool
DevNewCacheLayout bool
DevOldCacheLayout bool
}
type scannerOptions struct {
@ -136,7 +136,7 @@ func init() {
viper.SetDefault("devlogsourceline", false)
viper.SetDefault("devautocreateadminpassword", "")
viper.SetDefault("devprecachealbumartwork", false)
viper.SetDefault("devnewcachelayout", false)
viper.SetDefault("devoldcachelayout", false)
viper.SetDefault("devdisabletrackcoverart", false)
}