fix(webhook) remove NaN fom webhook url EE-5373 (#8815)

pull/8842/head
cmeng 2023-04-21 10:56:59 +12:00 committed by GitHub
parent fee315b07e
commit 535e499cc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ function getBaseUrl() {
const port = parseInt(window.location.port, 10);
const displayPort =
(protocol === 'http' && port === 80) ||
(protocol === 'https' && port === 443)
(protocol === 'https' && port === 443) ||
Number.isNaN(port)
? ''
: `:${port}`;
return `${protocol}://${hostname}${displayPort}${baseHref()}`;