fix webpack patch on client using discordapp.com part 2
This commit is contained in:
parent
066b872219
commit
ce18000c4e
|
@ -121,9 +121,9 @@ Object.defineProperty(Function.prototype, "m", {
|
||||||
set(v: any) {
|
set(v: any) {
|
||||||
// When using react devtools or other extensions, we may also catch their webpack here.
|
// When using react devtools or other extensions, we may also catch their webpack here.
|
||||||
// This ensures we actually got the right one
|
// This ensures we actually got the right one
|
||||||
const error = new Error();
|
const { stack } = new Error();
|
||||||
if (error.stack?.includes("discord.com")) {
|
if (stack?.includes("discord.com") || stack?.includes("discordapp.com")) {
|
||||||
logger.info("Found Webpack module factory", error.stack.match(/\/assets\/(.+?\.js)/)?.[1] ?? "");
|
logger.info("Found Webpack module factory", stack.match(/\/assets\/(.+?\.js)/)?.[1] ?? "");
|
||||||
patchFactories(v);
|
patchFactories(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue