mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
go fmt
This commit is contained in:
parent
9d41f5a39f
commit
4843ccb46c
42 changed files with 150 additions and 160 deletions
|
@ -1,15 +1,15 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"github.com/astaxie/beego"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func NoArticle(name string) string {
|
||||
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
||||
for _, a := range articles {
|
||||
n := strings.TrimPrefix(name, a + " ")
|
||||
if (n != name) {
|
||||
n := strings.TrimPrefix(name, a+" ")
|
||||
if n != name {
|
||||
return n
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue