mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-01 08:30:10 +01:00
set globe icon properly
This commit is contained in:
parent
6722793087
commit
65842a3dba
@ -51,13 +51,14 @@ angular
|
||||
hostnameUri.indexOf('https://') !== 0) {
|
||||
hostnameUri = "http://" + hostnameUri;
|
||||
isWebsite = true;
|
||||
ctrl.icon = 'fa-globe';
|
||||
}
|
||||
else {
|
||||
isWebsite = hostnameUri.indexOf('http') === 0 && hostnameUri.indexOf('.') > 0;
|
||||
ctrl.icon = 'fa-globe';
|
||||
}
|
||||
|
||||
if (isWebsite) {
|
||||
ctrl.icon = 'fa-globe';
|
||||
try {
|
||||
var url = new URL(hostnameUri);
|
||||
ctrl.image = 'https://icons.bitwarden.com/' + url.hostname + '/icon.png';
|
||||
|
Loading…
Reference in New Issue
Block a user