From 70d4c70e7530b71f2c6cb070f5729b9399031646 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Fri, 2 Apr 2021 12:33:16 +0300 Subject: [PATCH] Pull request: client: use relative links for mobileconfig api Updates #2905. Squashed commit of the following: commit af607433e07a43497930cdc1ef0012fa713e64da Author: Ainar Garipov Date: Thu Apr 1 19:33:35 2021 +0300 client: use relative links for mobileconfig api --- client/src/helpers/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/helpers/constants.js b/client/src/helpers/constants.js index 0c9919ac3c5..83e84b4bdd8 100644 --- a/client/src/helpers/constants.js +++ b/client/src/helpers/constants.js @@ -646,6 +646,6 @@ export const isFirefox = navigator.userAgent.indexOf('Firefox') !== -1; export const COMMENT_LINE_DEFAULT_TOKEN = '#'; export const MOBILE_CONFIG_LINKS = { - DOT: '/apple/dot.mobileconfig', - DOH: '/apple/doh.mobileconfig', + DOT: 'apple/dot.mobileconfig', + DOH: 'apple/doh.mobileconfig', };