FIX preview accepting events from any source

This commit is contained in:
Norbert de Langen 2020-04-15 15:46:04 +02:00
parent d3c93ccc73
commit 136d184ccb
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -170,10 +170,11 @@ export class PostmsgTransport {
? `<span style="color: #FF4785">${event.type}</span>`
: `<span style="color: #FFAE00">${event.type}</span>`;
event.source = source || getEventSourceUrl(rawEvent);
event.source =
source || this.config.page === 'preview' ? event.origin : getEventSourceUrl(rawEvent);
if (!event.source) {
logger.error(
pretty.error(
`${pageString} received ${eventString} but was unable to determine the source of the event`
);