mirror of
https://github.com/NovaGM/ModuleBuilder.git
synced 2024-08-15 00:23:33 +00:00
[PCCompat > Webpack] Make display name getting case insensitive
This commit is contained in:
parent
549bb1afec
commit
865a105079
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ module.exports = {
|
|||
},
|
||||
|
||||
getModuleByDisplayName: (displayName) => {
|
||||
return goosemodScope.webpackModules.findByDisplayName(displayName);
|
||||
// Use custom find instead of GM's findByDisplayName as PC's is case insensitive
|
||||
return goosemodScope.webpackModules.find((x) => x.displayName.toLowerCase() === displayName.toLowerCase);
|
||||
},
|
||||
|
||||
...goosemodScope.webpackModules.common // Export common modules (eg: React)
|
||||
|
|
Loading…
Reference in a new issue