feat(subsonic): rename AppendSubtitle conf to Subsonic.AppendSubtitle, for consistency

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-03-08 19:02:29 -05:00
parent 0d42b9a4a5
commit 57d3be8604
3 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,6 @@ type configOptions struct {
SearchFullString bool SearchFullString bool
RecentlyAddedByModTime bool RecentlyAddedByModTime bool
PreferSortTags bool PreferSortTags bool
AppendSubtitle bool
IgnoredArticles string IgnoredArticles string
IndexGroups string IndexGroups string
FFmpegPath string FFmpegPath string
@ -133,6 +132,7 @@ type scannerOptions struct {
} }
type subsonicOptions struct { type subsonicOptions struct {
AppendSubtitle bool
ArtistParticipations bool ArtistParticipations bool
DefaultReportRealPath bool DefaultReportRealPath bool
LegacyClients string LegacyClients string
@ -447,7 +447,6 @@ func init() {
viper.SetDefault("searchfullstring", false) viper.SetDefault("searchfullstring", false)
viper.SetDefault("recentlyaddedbymodtime", false) viper.SetDefault("recentlyaddedbymodtime", false)
viper.SetDefault("prefersorttags", false) viper.SetDefault("prefersorttags", false)
viper.SetDefault("appendsubtitle", true)
viper.SetDefault("ignoredarticles", "The El La Los Las Le Les Os As O A") viper.SetDefault("ignoredarticles", "The El La Los Las Le Les Os As O A")
viper.SetDefault("indexgroups", "A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ) [Unknown]([)") viper.SetDefault("indexgroups", "A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ) [Unknown]([)")
viper.SetDefault("ffmpegpath", "") viper.SetDefault("ffmpegpath", "")
@ -494,6 +493,7 @@ func init() {
viper.SetDefault("scanner.watcherwait", consts.DefaultWatcherWait) viper.SetDefault("scanner.watcherwait", consts.DefaultWatcherWait)
viper.SetDefault("scanner.scanonstartup", true) viper.SetDefault("scanner.scanonstartup", true)
viper.SetDefault("subsonic.appendsubtitle", true)
viper.SetDefault("subsonic.artistparticipations", false) viper.SetDefault("subsonic.artistparticipations", false)
viper.SetDefault("subsonic.defaultreportrealpath", false) viper.SetDefault("subsonic.defaultreportrealpath", false)
viper.SetDefault("subsonic.legacyclients", "DSub") viper.SetDefault("subsonic.legacyclients", "DSub")

View file

@ -93,7 +93,7 @@ type MediaFile struct {
} }
func (mf MediaFile) FullTitle() string { func (mf MediaFile) FullTitle() string {
if conf.Server.AppendSubtitle && mf.Tags[TagSubtitle] != nil { if conf.Server.Subsonic.AppendSubtitle && mf.Tags[TagSubtitle] != nil {
return fmt.Sprintf("%s (%s)", mf.Title, mf.Tags[TagSubtitle][0]) return fmt.Sprintf("%s (%s)", mf.Title, mf.Tags[TagSubtitle][0])
} }
return mf.Title return mf.Title

View file

@ -55,7 +55,7 @@ func (c TagConf) SplitTagValue(values []string) []string {
type TagType string type TagType string
const ( const (
TagTypeInteger TagType = "integer" TagTypeInteger TagType = "int"
TagTypeFloat TagType = "float" TagTypeFloat TagType = "float"
TagTypeDate TagType = "date" TagTypeDate TagType = "date"
TagTypeUUID TagType = "uuid" TagTypeUUID TagType = "uuid"