1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

add http protocol if none fiven

This commit is contained in:
Kyle Spearrin
2018-03-02 12:42:11 -05:00
parent f205a9cc9f
commit 0d80216921

View File

@@ -151,6 +151,10 @@ export class UtilsService implements UtilsServiceAbstraction {
return null;
}
if (uriString.indexOf('://') === -1) {
uriString = 'http://' + uriString;
}
if (uriString.startsWith('http://') || uriString.startsWith('https://')) {
try {
return new URL(uriString);