summaryrefslogtreecommitdiff
path: root/StoneIsland/scripts
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-10-01 16:51:02 +0200
committerJules Laplace <julescarbon@gmail.com>2020-10-01 16:51:02 +0200
commit4568d0e428f53a508809d062b8cac792b5e56e1d (patch)
treeef318208e1ab074301d85a394c10f8974da25949 /StoneIsland/scripts
parent87ce52ad887322f8549a01e50bf6be61715cb9a9 (diff)
plist hook message
Diffstat (limited to 'StoneIsland/scripts')
-rw-r--r--StoneIsland/scripts/plist-hook.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/StoneIsland/scripts/plist-hook.js b/StoneIsland/scripts/plist-hook.js
index 232bba45..2b5cb82b 100644
--- a/StoneIsland/scripts/plist-hook.js
+++ b/StoneIsland/scripts/plist-hook.js
@@ -8,9 +8,9 @@ module.exports = function (context) {
var xml = fs.readFileSync(FILEPATH, 'utf8');
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."
+ obj.NSLocationWhenInUseUsageDescription = "Stone Island needs your location to show you product drops, which are only available in select locations."
+ obj.NSLocationAlwaysAndWhenInUseUsageDescription = "Stone Island needs your location to show you product drops, which are only available in select locations."
+ obj.NSLocationAlwaysUsageDescription = "Stone Island needs your location to show you product drops, which are only available in select locations."
obj.ITSAppUsesNonExemptEncryption = false
xml = plist.build(obj);