From 31b837fa90f631d4984482c6e952373fbb8bdbfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20H=2E=20K=C3=B6hler?= Date: Fri, 19 Jan 2024 10:21:22 -0300 Subject: [PATCH] fix: is same orientaiton (#3905) --- platform/core/src/utils/isDisplaySetReconstructable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/core/src/utils/isDisplaySetReconstructable.js b/platform/core/src/utils/isDisplaySetReconstructable.js index 2d36266c4..c32b565b0 100644 --- a/platform/core/src/utils/isDisplaySetReconstructable.js +++ b/platform/core/src/utils/isDisplaySetReconstructable.js @@ -184,7 +184,7 @@ function processSingleframe(instances) { } function _isSameOrientation(iop1, iop2) { - if (iop1 === undefined || !iop2 === undefined) { + if (iop1 === undefined || iop2 === undefined) { return; }