Skip to content

Commit 7b7410e

Browse files
author
Avaer Kazmer
committed
Bugfix missing normalizeEl call
1 parent 7a0f7e8 commit 7b7410e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@
366366

367367
const landXrIframe = root.childNodes[0];
368368
const ownedXrIframes = _getOwnedXrIframes(landXrIframe);
369-
const state = parse5.parseFragment(`<xr-site>${ownedXrIframes.map(xrIframe => xrIframe.outerHTML).join('')}</xr-site>`);
369+
let state = parse5.parseFragment(`<xr-site>${ownedXrIframes.map(xrIframe => xrIframe.outerHTML).join('')}</xr-site>`);
370+
state = _normalizeEl(state);
370371
sendChannel.send(JSON.stringify({
371372
method: 'initState',
372373
state,

0 commit comments

Comments
 (0)