We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3527f commit 2295e50Copy full SHA for 2295e50
src/lib/relink_private.js
@@ -25,7 +25,7 @@ module.exports = function relinkPrivateKeys(toContainer, fromContainer) {
25
var toVal = toContainer[k];
26
27
if(toVal === fromVal) continue;
28
- if(k !== '_categories' && toContainer.matches) continue;
+ if(toContainer.matches && k === '_categoriesMap') continue;
29
30
if(k.charAt(0) === '_' || typeof fromVal === 'function') {
31
// if it already exists at this point, it's something
0 commit comments