mirror of https://github.com/calzoneman/sync.git
custom-media: use url.parse, not whatwg URL (node v6 compat)
This commit is contained in:
parent
ea6e3f921f
commit
c7f7dcfed3
|
@ -1,5 +1,5 @@
|
||||||
import { ValidationError } from './errors';
|
import { ValidationError } from './errors';
|
||||||
import { URL } from 'url';
|
import { parse as parseURL } from 'url';
|
||||||
import net from 'net';
|
import net from 'net';
|
||||||
|
|
||||||
const SOURCE_QUALITIES = new Set([
|
const SOURCE_QUALITIES = new Set([
|
||||||
|
@ -105,7 +105,12 @@ function validateTextTracks(textTracks) {
|
||||||
function validateURL(urlstring) {
|
function validateURL(urlstring) {
|
||||||
let url;
|
let url;
|
||||||
try {
|
try {
|
||||||
url = new URL(urlstring);
|
url = parseURL(urlstring);
|
||||||
|
|
||||||
|
// legacy url.parse doesn't check this
|
||||||
|
if (url.protocol == null || url.host == null) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw new ValidationError(`invalid URL "${urlstring}"`);
|
throw new ValidationError(`invalid URL "${urlstring}"`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue