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
1 changed files with 4 additions and 0 deletions

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);