From c4645f79c663b455bbb81301137af7f843d1ab9a Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Wed, 22 May 2024 06:08:28 -0300 Subject: [PATCH] Make patchedBy a string set --- src/webpack/patchWebpack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/patchWebpack.ts b/src/webpack/patchWebpack.ts index 979bf0577..71348b889 100644 --- a/src/webpack/patchWebpack.ts +++ b/src/webpack/patchWebpack.ts @@ -141,7 +141,7 @@ function patchFactory(id: string, mod: (module: any, exports: any, require: Webp } const originalMod = mod; - const patchedBy = new Set(); + const patchedBy = new Set(); // Discords Webpack chunks for some ungodly reason contain random // newlines. Cyn recommended this workaround and it seems to work fine,