diff options
Diffstat (limited to 'src/common/Policy.js')
-rw-r--r-- | src/common/Policy.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/Policy.js b/src/common/Policy.js index e7818d9..4720532 100644 --- a/src/common/Policy.js +++ b/src/common/Policy.js @@ -274,7 +274,7 @@ var {Permissions, Policy, Sites} = (() => { } - Permissions.ALL = ["script", "object", "media", "frame", "font", "webgl", "fetch", "other"]; + Permissions.ALL = ["script", "object", "media", "frame", "font", "webgl", "fetch", "ping", "other"]; Permissions.IMMUTABLE = { UNTRUSTED: { "script": false, @@ -282,6 +282,7 @@ var {Permissions, Policy, Sites} = (() => { "webgl": false, "fetch": false, "other": false, + "ping": false, }, TRUSTED: { "script": true, |