[PCCompat > Webpack] Fix not actually calling toLowerCase

This commit is contained in:
Ducko 2021-06-08 16:18:33 +01:00 committed by Alyxia Sother
parent 5fe0bdc257
commit 9bcf6d59f8
No known key found for this signature in database
GPG Key ID: 355968D14144B739
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ module.exports = {
getModuleByDisplayName: (displayName) => {
// Use custom find instead of GM's findByDisplayName as PC's is case insensitive
return goosemodScope.webpackModules.find((x) => x.displayName && x.displayName.toLowerCase() === displayName.toLowerCase);
return goosemodScope.webpackModules.find((x) => x.displayName && x.displayName.toLowerCase() === displayName.toLowerCase());
},
...goosemodScope.webpackModules.common // Export common modules (eg: React)