From 9ecec972ca8e2ff7335a370b660f435417903165 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 22 Aug 2018 22:43:40 -0400 Subject: [PATCH] local notifications URL --- src/app/services/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 365d1b088e..ca58641573 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -132,7 +132,7 @@ export function initFactory(): Function { environmentService.baseUrl = window.location.origin; } else { environmentService.notificationsUrl = isDev ? 'http://localhost:61840' : - 'https://notifications.bitwarden.com'; + window.location.origin + '/notifications'; } await apiService.setUrls({ base: isDev ? null : window.location.origin,