Rename filterlist to filterlists

This commit is contained in:
Patrick Pacher
2020-04-14 11:23:15 +02:00
parent f630df0b1f
commit e77d971259
17 changed files with 41 additions and 41 deletions

View File

@@ -14,7 +14,7 @@ import (
"github.com/safing/portbase/config"
"github.com/safing/portbase/database/record"
"github.com/safing/portmaster/intel/filterlist"
"github.com/safing/portmaster/intel/filterlists"
"github.com/safing/portmaster/profile/endpoints"
)
@@ -144,7 +144,7 @@ func (profile *Profile) parseConfig() error {
list, ok = profile.configPerspective.GetAsStringArray(CfgOptionFilterListKey)
if ok {
profile.filterListIDs, err = filterlist.ResolveListIDs(list)
profile.filterListIDs, err = filterlists.ResolveListIDs(list)
if err != nil {
lastErr = err
}