check for empty string on malformed URL (#108)

This commit is contained in:
Kyle Spearrin 2020-06-01 14:31:42 -04:00 committed by GitHub
parent 212a2e3745
commit eef9588646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ export class Utils {
static getHostname(uriString: string): string { static getHostname(uriString: string): string {
const url = Utils.getUrl(uriString); const url = Utils.getUrl(uriString);
try { try {
return url != null ? url.hostname : null; return url != null && url.hostname !== '' ? url.hostname : null;
} catch { } catch {
return null; return null;
} }
@ -166,7 +166,7 @@ export class Utils {
static getHost(uriString: string): string { static getHost(uriString: string): string {
const url = Utils.getUrl(uriString); const url = Utils.getUrl(uriString);
try { try {
return url != null ? url.host : null; return url != null && url.host !== '' ? url.host : null;
} catch { } catch {
return null; return null;
} }