summaryrefslogtreecommitdiff
path: root/StoneIsland/scripts/plist-hook.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-10-16 02:22:50 +0200
committerJules Laplace <julescarbon@gmail.com>2019-10-16 02:22:50 +0200
commit335e61243d45c4c2eb5d030a8ee5f85c2ddf35f3 (patch)
tree0df18bcb17eafad1b6bb7a879586993f2d3a0ce0 /StoneIsland/scripts/plist-hook.js
parentfb383f5bdca2dc3865daa7e749fe5a340151cf7d (diff)
a11y updates
Diffstat (limited to 'StoneIsland/scripts/plist-hook.js')
-rw-r--r--StoneIsland/scripts/plist-hook.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/StoneIsland/scripts/plist-hook.js b/StoneIsland/scripts/plist-hook.js
index a1827079..623080f0 100644
--- a/StoneIsland/scripts/plist-hook.js
+++ b/StoneIsland/scripts/plist-hook.js
@@ -9,6 +9,8 @@ module.exports = function (context) {
var obj = plist.parse(xml);
obj.NSLocationWhenInUseUsageDescription = "Stone Island needs to serve content based on your location."
+ obj.NSLocationAlwaysAndWhenInUseUsageDescription = "Stone Island needs to serve content based on your location."
+ obj.NSLocationAlwaysUsageDescription = "Stone Island needs to serve content based on your location."
xml = plist.build(obj);
fs.writeFileSync(FILEPATH, xml, { encoding: 'utf8' });