Skip to content

Commit 42fee39

Browse files
committed
Merge branch 'beta'
* beta: Fix operator precedence in areRelationshipTargetGroupsEqual
2 parents 4765fed + 40fe13c commit 42fee39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

root/utility/groupRelationships.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ const areRelationshipTargetGroupsEqual = (a, b) => {
125125
b.datedExtraAttributesList,
126126
areDatedExtraAttributesEqual,
127127
) &&
128-
(aTracks && bTracks)
128+
((aTracks && bTracks)
129129
? arraysEqual(
130130
Array.from(aTracks),
131131
Array.from(bTracks),
132132
(a, b) => a === b,
133-
) : true
133+
) : true)
134134
);
135135
};
136136

0 commit comments

Comments
 (0)