Add feature flag for buffered scrobbling

This commit is contained in:
Deluan 2021-07-02 09:54:09 -04:00
parent cfb113bd33
commit f49205733b
3 changed files with 12 additions and 8 deletions

View file

@ -70,6 +70,7 @@ type configOptions struct {
DevOldCacheLayout bool
DevActivityPanel bool
DevEnableShare bool
DevEnableBufferedScrobble bool
}
type scannerOptions struct {
@ -229,6 +230,7 @@ func init() {
viper.SetDefault("devfastaccesscoverart", false)
viper.SetDefault("devactivitypanel", true)
viper.SetDefault("devenableshare", false)
viper.SetDefault("devenablebufferedscrobble", false)
}
func InitConfig(cfgFile string) {