fix webpack patch on client using discordapp.com
This commit is contained in:
parent
a525cd0113
commit
066b872219
|
@ -63,7 +63,8 @@ Object.defineProperty(Function.prototype, "O", {
|
||||||
// When using react devtools or other extensions, or even when discord loads the sentry, we may also catch their webpack here.
|
// When using react devtools or other extensions, or even when discord loads the sentry, we may also catch their webpack here.
|
||||||
// This ensures we actually got the right one
|
// This ensures we actually got the right one
|
||||||
// this.e (wreq.e) is the method for loading a chunk, and only the main webpack has it
|
// this.e (wreq.e) is the method for loading a chunk, and only the main webpack has it
|
||||||
if (new Error().stack?.includes("discord.com") && String(this.e).includes("Promise.all")) {
|
const { stack } = new Error();
|
||||||
|
if ((stack?.includes("discord.com") || stack?.includes("discordapp.com")) && String(this.e).includes("Promise.all")) {
|
||||||
logger.info("Found main WebpackRequire.onChunksLoaded");
|
logger.info("Found main WebpackRequire.onChunksLoaded");
|
||||||
|
|
||||||
delete (Function.prototype as any).O;
|
delete (Function.prototype as any).O;
|
||||||
|
|
Loading…
Reference in a new issue