mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add feature flag for buffered scrobbling
This commit is contained in:
parent
cfb113bd33
commit
f49205733b
3 changed files with 12 additions and 8 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue