mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 02:16:23 +00:00
Merge branch 'modules-proxy-patches' into immediate-finds-modules-proxy
This commit is contained in:
commit
5bbf467be0
1 changed files with 2 additions and 2 deletions
|
@ -157,10 +157,10 @@ export async function loadLazyChunks() {
|
||||||
|
|
||||||
// Loads and requires a chunk
|
// Loads and requires a chunk
|
||||||
if (!isWorkerAsset) {
|
if (!isWorkerAsset) {
|
||||||
await wreq.e(id as any);
|
await wreq.e(id);
|
||||||
// Technically, the id of the chunk does not match the entry point
|
// Technically, the id of the chunk does not match the entry point
|
||||||
// But, still try it because we have no way to get the actual entry point
|
// But, still try it because we have no way to get the actual entry point
|
||||||
if (wreq.m[id]) wreq(id as any);
|
if (wreq.m[id]) wreq(id);
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue