1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

catch security error when setting env urls

This commit is contained in:
Kyle Spearrin 2017-09-03 12:58:42 -04:00
parent d433d9c4fc
commit 1f8e30b5cd

View File

@ -11,6 +11,7 @@ function ApiService(tokenService, appIdService, utilsService, constantsService,
function initApiService() {
ApiService.prototype.setUrls = function () {
try {
var storedBaseUrl = window.localStorage.getItem(this.constantsService.baseUrlKey);
if (storedBaseUrl) {
@ -26,6 +27,11 @@ function initApiService() {
this.identityBaseUrl = storedIdentityUrl;
return;
}
}
catch (e) {
console.log('Unable to set custom environment URLs:');
console.log(e);
}
// Desktop
//this.baseUrl = 'http://localhost:4000';