Fix module dependencies, split filter into interception and filter modules
This commit is contained in:
@@ -33,7 +33,7 @@ var (
|
||||
func init() {
|
||||
ignoreNetEnvEvents.Set()
|
||||
|
||||
module = modules.Register("filterlists", prep, start, nil, "core", "netenv")
|
||||
module = modules.Register("filterlists", prep, start, stop, "core")
|
||||
}
|
||||
|
||||
func prep() error {
|
||||
@@ -98,3 +98,8 @@ func start() error {
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func stop() error {
|
||||
filterListsLoaded = make(chan struct{})
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user