diff options
author | Christian Oliff <christianoliff@yahoo.com> | 2018-02-01 19:43:24 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-01 19:43:24 +0900 |
commit | 4257d0a566b3eb5af3a13376970bd2df63f721e7 (patch) | |
tree | 51c7b9129259be8de5b83143299d9e9d6ec1a66d /themes | |
parent | 009874a4c2ac9325b0345d9ce4917d6023e68177 (diff) | |
download | nextcloud-server-4257d0a566b3eb5af3a13376970bd2df63f721e7.tar.gz nextcloud-server-4257d0a566b3eb5af3a13376970bd2df63f721e7.zip |
Update iOS link to geo-detect show correct store listing
Adding 'geo.' at beginning of the URL will automatically show users the store listing for their region so it's a better experience.
For example users in Japan will see: https://itunes.apple.com/jp/app/nextcloud/id1125420102?mt=8 which has local customer reviews and certain other information in Japanese.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/defaults.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php index 186cda236b1..39006c94ad2 100644 --- a/themes/example/defaults.php +++ b/themes/example/defaults.php @@ -41,7 +41,7 @@ class OC_Theme { * @return string URL */ public function getiOSClientUrl() { - return 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8'; + return 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8'; } /** |