add some more domains

This commit is contained in:
Darien Raymond
2018-08-21 17:20:38 +02:00
parent 60ef9d30cd
commit 133f54e125
7 changed files with 433 additions and 2 deletions

View File

@ -119,8 +119,9 @@ func ParseList(list *List, ref map[string]*List) (*ParsedList, error) {
if pl.Inclusion[entry.Value] {
continue
}
pl.Inclusion[entry.Value] = true
r := ref[entry.Value]
refName := strings.ToUpper(entry.Value)
pl.Inclusion[refName] = true
r := ref[refName]
if r == nil {
return nil, errors.New(entry.Value + " not found.")
}