fix: don't try to decorate non-existent
This commit is contained in:
parent
424fc4dae1
commit
0b8b8809a8
|
@ -99,8 +99,10 @@ export default class Flecks {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
const key = transformer(this.symbolizePath(path));
|
const key = transformer(this.symbolizePath(path));
|
||||||
// eslint-disable-next-line no-param-reassign
|
if (Gathered[key]) {
|
||||||
Gathered[key] = M(Gathered[key], flecks);
|
// eslint-disable-next-line no-param-reassign
|
||||||
|
Gathered[key] = M(Gathered[key], flecks);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return Gathered;
|
return Gathered;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user