guard against a typeError when httpSafeOrigin is not defined
This commit is contained in:
parent
2b3f6e3464
commit
5196440e65
@ -43,7 +43,9 @@ if (process.env.PACKAGE) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
config.httpUnsafeOrigin = config.httpUnsafeOrigin.trim();
|
config.httpUnsafeOrigin = config.httpUnsafeOrigin.trim();
|
||||||
|
if (typeof(config.httpSafeOrigin) === 'string') {
|
||||||
config.httpSafeOrigin = config.httpSafeOrigin.trim().replace(/\/$/, '');
|
config.httpSafeOrigin = config.httpSafeOrigin.trim().replace(/\/$/, '');
|
||||||
|
}
|
||||||
|
|
||||||
// fall back to listening on a local address
|
// fall back to listening on a local address
|
||||||
// if httpAddress is not a string
|
// if httpAddress is not a string
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user