This commit is contained in:
Mirco Wittrien 2020-09-25 21:34:18 +02:00
parent 4959569e8e
commit 5a40615eda
2 changed files with 2 additions and 1 deletions

View File

@ -1498,7 +1498,7 @@ module.exports = (_ => {
nonRender: BDFDB.ObjectUtils.toArray(pluginData.patchTypes).flat(10).filter(n => n && !InternalData.ModuleUtilsConfig.InstanceFunctions.includes(n)).length > 0,
mapped: InternalData.ModuleUtilsConfig.PatchMap[type]
};
config.ignoreCheck = !!(config.codeFind || config.propertyFind || config.specialFilter || config.nonRender);
config.ignoreCheck = !!(config.codeFind || config.propertyFind || config.specialFilter || config.nonRender || config.memoComponent);
config.nonPrototype = InternalData.ModuleUtilsConfig.NonPrototype.includes(unmappedType) || !!(config.codeFind || config.propertyFind || config.nonRender);
let component = InternalData.ModuleUtilsConfig.LoadedInComponents[type] && BDFDB.ObjectUtils.get(InternalComponents, InternalData.ModuleUtilsConfig.LoadedInComponents[type]);

View File

@ -18,6 +18,7 @@
"AnimationUtils": {"props": ["spring", "decay"]},
"ArrayUtils": {"props": ["isArrayLike", "zipObject"]},
"AssetUtils": {"props": ["getAssetImage", "getAssetIds"]},
"AutocompleteOptions": {"props": ["AUTOCOMPLETE_OPTIONS"]},
"BadgeUtils": {"props": ["getBadgeCountString", "getBadgeWidthForValue"]},
"CallUtils": {"props": ["getCalls", "isCallActive"]},
"CategoryCollapseStore": {"props": ["getCollapsedCategories", "isCollapsed"]},