scrobblerlog: configuring should show append mode as enabled by default

This commit is contained in:
Philipp Wolfer 2023-12-10 00:25:29 +01:00
parent 4d07a39b64
commit acb0e9cb11
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B

View file

@ -47,9 +47,10 @@ func (b *ScrobblerLogBackend) Options() []models.BackendOption {
Label: i18n.Tr("Include skipped listens"), Label: i18n.Tr("Include skipped listens"),
Type: models.Bool, Type: models.Bool,
}, { }, {
Name: "append", Name: "append",
Label: i18n.Tr("Append to file"), Label: i18n.Tr("Append to file"),
Type: models.Bool, Type: models.Bool,
Default: "true",
}} }}
} }