You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be an issue with list equality check. It looks like the function functions want to work with lists (JS arrays) to get a length of a list and then compare each element one by one. But it actually gets objects with a list representation. Thus it always goes to return true; branch.
Issue
There seems to be an issue with list equality check. It looks like the function functions want to work with lists (JS arrays) to get a length of a list and then compare each element one by one. But it actually gets objects with a list representation. Thus it always goes to
return true;
branch.This creates another issues.
Solution
One way to solve it is to call
_Json_listEquality
function recursivelly.The text was updated successfully, but these errors were encountered: