Rename env vars prefix to ND_

This commit is contained in:
Deluan 2020-01-24 01:29:31 -05:00
parent d48ddacaba
commit bff6f3a4bd
18 changed files with 42 additions and 42 deletions

View file

@ -7,7 +7,7 @@ import (
)
func NoArticle(name string) string {
articles := strings.Split(conf.Sonic.IgnoredArticles, " ")
articles := strings.Split(conf.Server.IgnoredArticles, " ")
for _, a := range articles {
n := strings.TrimPrefix(name, a+" ")
if n != name {