aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 4cffea110..513295b5e 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -701,10 +701,10 @@ export default class ServicesStore extends Store {
701 } 701 }
702 702
703 if (service.isUsingCustomUrl) { 703 if (service.isUsingCustomUrl) {
704 service.isServiceAccessRestricted = features.isCustomUrlPremiumFeature; 704 service.isServiceAccessRestricted = features.isCustomUrlIncludedInCurrentPlan;
705 service.restrictionType = RESTRICTION_TYPES.CUSTOM_URL; 705 service.restrictionType = RESTRICTION_TYPES.CUSTOM_URL;
706 706
707 if (features.isCustomUrlPremiumFeature) { 707 if (features.isCustomUrlIncludedInCurrentPlan) {
708 debug('Restricting access to server due to custom url'); 708 debug('Restricting access to server due to custom url');
709 } 709 }
710 } 710 }