mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
New configuration system
This commit is contained in:
parent
9049d97820
commit
c2b1f9782b
14 changed files with 101 additions and 41 deletions
|
@ -3,11 +3,11 @@ package utils
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
"github.com/deluan/gosonic/conf"
|
||||
)
|
||||
|
||||
func NoArticle(name string) string {
|
||||
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
||||
articles := strings.Split(conf.GoSonic.IgnoredArticles, " ")
|
||||
for _, a := range articles {
|
||||
n := strings.TrimPrefix(name, a+" ")
|
||||
if n != name {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue