Skip to content

Commit

Permalink
Fix: appprofile.php no extra no-resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Dec 20, 2023
1 parent 85facb2 commit bc6256c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Build/build-sspanel-appprofile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ function generateAppProfile(
...streamDomains.map(line => ` '${line},Stream',`),
// global - domains
...globalDomains.map(line => ` '${line},Global',`),
// domestic - ip cidr
...directCidrs.map(line => ` '${line},Domestic,no-resolve',`),
// microsoft & apple - ip cidr (nope)
// stream - ip cidr
...streamCidrs.map(line => ` '${line},Stream,no-resolve',`),
...streamCidrs.map(line => ` '${line},Stream',`),
// global - ip cidr
...globalCidrs.map(line => ` '${line},Global,no-resolve',`),
...globalCidrs.map(line => ` '${line},Global',`),
// domestic - ip cidr
...directCidrs.map(line => ` '${line},Domestic',`),
// match
' \'MATCH,Final Match\',',
' ],',
Expand Down

0 comments on commit bc6256c

Please sign in to comment.