1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

adding the self host check back in (#997)

This commit is contained in:
Joseph Flinn
2021-05-27 14:28:42 -07:00
committed by GitHub
parent da0df3a73b
commit 9b7a1c7760

View File

@@ -145,7 +145,7 @@ export function initFactory(): Function {
return async () => {
await (storageService as HtmlStorageService).init();
if (process.env.ENV !== 'production') {
if (process.env.ENV !== 'production' || platformUtilsService.isSelfHost()) {
environmentService.baseUrl = window.location.origin;
} else {
environmentService.notificationsUrl = 'https://notifications.bitwarden.com';