mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Better handling of album comments (#1013)
* Change album comment behaviour * Don't check first item * Fix previously imported album comments. * Remove song comments if album comment is present
This commit is contained in:
parent
4b5a5abe1b
commit
b671d0ff7b
6 changed files with 114 additions and 7 deletions
|
@ -263,15 +263,18 @@ func (r *albumRepository) refresh(ids ...string) error {
|
|||
return err
|
||||
}
|
||||
|
||||
// Return the first non empty comment, if any
|
||||
func getComment(comments string, separator string) string {
|
||||
cs := strings.Split(comments, separator)
|
||||
for _, c := range cs {
|
||||
if c != "" {
|
||||
return c
|
||||
if len(cs) == 0 {
|
||||
return ""
|
||||
}
|
||||
first := cs[0]
|
||||
for _, c := range cs[1:] {
|
||||
if first != c {
|
||||
return ""
|
||||
}
|
||||
}
|
||||
return ""
|
||||
return first
|
||||
}
|
||||
|
||||
func getMinYear(years string) int {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue