mirror of
https://github.com/safing/portmaster
synced 2025-04-25 13:29:10 +00:00
Remove default value for incoming rules
This commit is contained in:
parent
d4f316e65a
commit
314b5d50f8
1 changed files with 1 additions and 2 deletions
|
@ -292,7 +292,6 @@ Important: DNS Requests are only matched against domain and filter list rules, a
|
|||
cfgStringArrayOptions[CfgOptionEndpointsKey] = cfgOptionEndpoints
|
||||
|
||||
// Service Endpoint Filter List
|
||||
defaultIncomingRulesValue := []string{"+ LAN"}
|
||||
err = config.Register(&config.Option{
|
||||
Name: "Incoming Rules",
|
||||
Key: CfgOptionServiceEndpointsKey,
|
||||
|
@ -300,7 +299,7 @@ Important: DNS Requests are only matched against domain and filter list rules, a
|
|||
Help: rulesHelp,
|
||||
Sensitive: true,
|
||||
OptType: config.OptTypeStringArray,
|
||||
DefaultValue: defaultIncomingRulesValue,
|
||||
DefaultValue: []string{},
|
||||
ExpertiseLevel: config.ExpertiseLevelExpert,
|
||||
Annotations: config.Annotations{
|
||||
config.StackableAnnotation: true,
|
||||
|
|
Loading…
Add table
Reference in a new issue