Fix a case of endless recursion

pull/1285/head
Lyubomir Marinov 8 years ago committed by Любомир Маринов
parent 7a57dcc08a
commit 91487ffc94
  1. 7
      react/features/base/react/RouteRegistry.js

@ -43,9 +43,12 @@ class RouteRegistry {
return !a;
}
const aKeys = Object.keys(a);
const bKeys = Object.keys(b);
return (
Object.keys(a).every(key => a[key] === b[key])
&& /* symmetric */ this.areRoutesEqual(b, a));
aKeys.length === bKeys.length /* symmetric */
&& aKeys.every(key => a[key] === b[key]));
}
/**

Loading…
Cancel
Save