mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
feat(subsonic): rename AppendSubtitle conf to Subsonic.AppendSubtitle, for consistency
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
0d42b9a4a5
commit
57d3be8604
3 changed files with 4 additions and 4 deletions
|
@ -93,7 +93,7 @@ type MediaFile struct {
|
|||
}
|
||||
|
||||
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 mf.Title
|
||||
|
|
|
@ -55,7 +55,7 @@ func (c TagConf) SplitTagValue(values []string) []string {
|
|||
type TagType string
|
||||
|
||||
const (
|
||||
TagTypeInteger TagType = "integer"
|
||||
TagTypeInteger TagType = "int"
|
||||
TagTypeFloat TagType = "float"
|
||||
TagTypeDate TagType = "date"
|
||||
TagTypeUUID TagType = "uuid"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue