mirror of https://github.com/embarklabs/embark.git
fix(@embark/utils): fix deconstruct url to return port as an integer
(cherry picked from commit e41a1d58c11b9808e8d2827e73ed98bce6d82d22)
This commit is contained in:
parent
9aa9e6cf5a
commit
4190d5ec65
|
@ -173,7 +173,7 @@ export function deconstructUrl(endpoint) {
|
||||||
return {
|
return {
|
||||||
protocol: matches[1],
|
protocol: matches[1],
|
||||||
host: matches[2],
|
host: matches[2],
|
||||||
port: matches[3],
|
port: matches[3] ? parseInt(matches[3], 10) : false,
|
||||||
type: matches[1] === 'ws' || matches[1] === 'wss' ? 'ws' : 'rpc'
|
type: matches[1] === 'ws' || matches[1] === 'wss' ? 'ws' : 'rpc'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue