1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

rename to browser platform utils

This commit is contained in:
Kyle Spearrin
2018-01-05 16:38:50 -05:00
parent 4a08bf6b71
commit cbf8b00b33
5 changed files with 91 additions and 91 deletions

View File

@@ -11,7 +11,7 @@ import { Identity } from './identity';
import { Login } from './login';
import { SecureNote } from './secureNote';
import BrowserUtilsService from '../../services/browserUtils.service';
import BrowserPlatformUtilsService from '../../services/browserPlatformUtils.service';
class Cipher extends Domain {
id: string;
@@ -117,7 +117,7 @@ class Cipher extends Domain {
model.login = await this.login.decrypt(this.organizationId);
model.subTitle = model.login.username;
if (model.login.uri) {
model.login.domain = BrowserUtilsService.getDomain(model.login.uri);
model.login.domain = BrowserPlatformUtilsService.getDomain(model.login.uri);
}
break;
case CipherType.SecureNote: