fix reporter part 2

This commit is contained in:
Nuckyz 2024-06-01 00:17:15 -03:00
parent 0aff3c29bc
commit dd4d80872e
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -30,7 +30,7 @@ async function runReporter() {
}, "Vencord Reporter"); }, "Vencord Reporter");
// @ts-ignore // @ts-ignore
Webpack._initReporter = function () { Vencord.Webpack._initReporter = function () {
// initReporter is called in the patched entry point of Discord // initReporter is called in the patched entry point of Discord
// setImmediate to only start searching for lazy chunks after Discord initialized the app // setImmediate to only start searching for lazy chunks after Discord initialized the app
setTimeout(() => { setTimeout(() => {
@ -242,4 +242,5 @@ async function runReporter() {
} }
} }
runReporter(); // Run after the Vencord object has been created
setTimeout(runReporter, 0);