mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-30 13:03:53 +01:00
make sure uri has .
in it before prefixing http
This commit is contained in:
parent
a035d73545
commit
1eb5a99ba3
@ -197,13 +197,12 @@ angular
|
|||||||
else if (hostnameUri.indexOf('iosapp://') === 0) {
|
else if (hostnameUri.indexOf('iosapp://') === 0) {
|
||||||
cipher.icon = 'fa-apple';
|
cipher.icon = 'fa-apple';
|
||||||
}
|
}
|
||||||
else if (hostnameUri.indexOf('://') === -1 && hostnameUri.indexOf('http://') !== 0 &&
|
else if (hostnameUri.indexOf('://') === -1 && hostnameUri.indexOf('.') > -1) {
|
||||||
hostnameUri.indexOf('https://') !== 0) {
|
|
||||||
hostnameUri = "http://" + hostnameUri;
|
hostnameUri = "http://" + hostnameUri;
|
||||||
isWebsite = true;
|
isWebsite = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
isWebsite = hostnameUri.indexOf('http') === 0 && hostnameUri.indexOf('.') > 0;
|
isWebsite = hostnameUri.indexOf('http') === 0 && hostnameUri.indexOf('.') > -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (setImage && isWebsite) {
|
if (setImage && isWebsite) {
|
||||||
|
Loading…
Reference in New Issue
Block a user