From 175fb81bcc82a1ca752e0e26f36a181d8781b30d Mon Sep 17 00:00:00 2001 From: AvaLilac Date: Wed, 11 Mar 2026 18:42:52 -0400 Subject: [PATCH] Update main.ts Signed-off-by: AvaLilac --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 89e31a8..c2b0338 100644 --- a/src/main.ts +++ b/src/main.ts @@ -53,7 +53,7 @@ const loadInject = () => { const pluginCode = fs.readFileSync(pluginPath, "utf8"); await mainWindow.webContents.executeJavaScript(pluginCode, true); - const badgePath = path.join(__dirname, "userbadges.js"); + const badgePath = path.join(__dirname, "aviaversion.js"); const badgeCode = fs.readFileSync(badgePath, "utf8"); await mainWindow.webContents.executeJavaScript(badgeCode, true); } catch {}