This commit is contained in:
raon0211 2021-04-12 18:21:56 +09:00
parent 6a955f2502
commit b4a83e15f9

View File

@ -231,8 +231,8 @@ const getEventSourceUrl = (event: MessageEvent) => {
if (frame && remainder.length === 0) {
const src = frame.getAttribute('src');
const { origin, pathname } = new URL(src, document.location);
return origin + pathname;
const { protocol, host, pathname } = new URL(src, document.location);
return `${protocol}//${host}${pathname}`;
}
if (remainder.length > 0) {