mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 14:05:45 +03:00
Pull request: 4625-imp-skype-blocking
Updates #4625. Squashed commit of the following: commit 2d49d9f9a339aeceeb64b5dcd03656e5a273d4c4 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Aug 22 20:52:46 2022 +0300 filtering: add skype rules
This commit is contained in:
parent
970b6cf698
commit
307654f648
2 changed files with 22 additions and 7 deletions
|
@ -108,14 +108,29 @@ var serviceRulesArray = []svc{{
|
|||
name: "ok",
|
||||
rules: []string{"||ok.ru^"},
|
||||
}, {
|
||||
name: "skype",
|
||||
rules: []string{"||skype.com^", "||skypeassets.com^"},
|
||||
name: "skype",
|
||||
rules: []string{
|
||||
"||edge-skype-com.s-0001.s-msedge.net^",
|
||||
"||skype-edf.akadns.net^",
|
||||
"||skype.com^",
|
||||
"||skypeassets.com^",
|
||||
"||skypedata.akadns.net^",
|
||||
},
|
||||
}, {
|
||||
name: "vk",
|
||||
rules: []string{"||vk.com^", "||userapi.com^", "||vk-cdn.net^", "||vkuservideo.net^"},
|
||||
name: "vk",
|
||||
rules: []string{
|
||||
"||userapi.com^",
|
||||
"||vk-cdn.net^",
|
||||
"||vk.com^",
|
||||
"||vkuservideo.net^",
|
||||
},
|
||||
}, {
|
||||
name: "origin",
|
||||
rules: []string{"||origin.com^", "||signin.ea.com^", "||accounts.ea.com^"},
|
||||
name: "origin",
|
||||
rules: []string{
|
||||
"||accounts.ea.com^",
|
||||
"||origin.com^",
|
||||
"||signin.ea.com^",
|
||||
},
|
||||
}, {
|
||||
name: "steam",
|
||||
rules: []string{
|
||||
|
|
|
@ -107,7 +107,7 @@ const download = async () => {
|
|||
|
||||
// Don't request the Crowdin API too aggressively to prevent spurious
|
||||
// 400 errors.
|
||||
await sleep(200);
|
||||
await sleep(300);
|
||||
}
|
||||
|
||||
Promise
|
||||
|
|
Loading…
Reference in a new issue