mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix(server): panic when logging tag type. Fix #3790
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
365df5220b
commit
5c67297dce
1 changed files with 4 additions and 2 deletions
|
@ -55,6 +55,7 @@ func (c TagConf) SplitTagValue(values []string) []string {
|
|||
type TagType string
|
||||
|
||||
const (
|
||||
TagTypeString TagType = "string"
|
||||
TagTypeInteger TagType = "int"
|
||||
TagTypeFloat TagType = "float"
|
||||
TagTypeDate TagType = "date"
|
||||
|
@ -113,8 +114,9 @@ func collectTags(tagMappings, normalized map[TagName]TagConf) {
|
|||
aliases = append(aliases, strings.ToLower(val))
|
||||
}
|
||||
if v.Split != nil {
|
||||
if v.Type != "" {
|
||||
log.Error("Tag splitting only available for string types", "tag", k, "split", v.Split, "type", v.Type)
|
||||
if v.Type != "" && v.Type != TagTypeString {
|
||||
log.Error("Tag splitting only available for string types", "tag", k, "split", v.Split,
|
||||
"type", string(v.Type))
|
||||
v.Split = nil
|
||||
} else {
|
||||
v.SplitRx = compileSplitRegex(k, v.Split)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue