From fdc90c7e009e4ff786d60a7a52e1f2f91da32577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dailer-=E5=88=98=E8=8D=A3=E6=AD=86?= Date: Mon, 26 Jun 2023 14:07:48 +0800 Subject: [PATCH] =?UTF-8?q?BI-128856=20fix:=20=E3=80=906.0.11.1final?= =?UTF-8?q?=E3=80=91=E4=BB=AA=E8=A1=A8=E6=9D=BF=E7=BC=96=E8=BE=91=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E5=A4=8D=E5=90=88=E8=BF=87=E6=BB=A4=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E8=AE=BE=E7=BD=AE=E8=BF=87=E6=BB=A4=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E5=AE=9E=E6=97=B6=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/2.base.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/2.base.js b/src/core/2.base.js index dc94a3d98..ba7bc06b2 100644 --- a/src/core/2.base.js +++ b/src/core/2.base.js @@ -640,15 +640,15 @@ var result = []; var used = []; for (var b in object) { - if (this.has(object, b)) { - if (!this.isEqual(object[b], other[b])) { + if (BI.has(object, b)) { + if (!BI.isEqual(object[b], other[b])) { result.push(b); } used.push(b); } } for (var b in other) { - if (this.has(other, b) && !BI.contains(used, b)) { + if (BI.has(other, b) && !BI.contains(used, b)) { result.push(b); } }