From 0005a7f007dc540a4ad3c748f810aa18c9bebe1b Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Tue, 27 Aug 2024 20:48:07 -0400 Subject: [PATCH] Fix Equibop Flag For Support Helper --- src/plugins/_core/supportHelper.tsx | 1 + src/plugins/reviewDB/index.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/_core/supportHelper.tsx b/src/plugins/_core/supportHelper.tsx index cba19f1e..af2e4be6 100644 --- a/src/plugins/_core/supportHelper.tsx +++ b/src/plugins/_core/supportHelper.tsx @@ -81,6 +81,7 @@ async function generateDebugInfoMessage() { const client = (() => { if (IS_DISCORD_DESKTOP) return `Discord Desktop v${DiscordNative.app.getVersion()}`; if (IS_VESKTOP) return `Vesktop v${VesktopNative.app.getVersion()}`; + if (IS_EQUIBOP) return `Equibop v${VesktopNative.app.getVersion()}`; if ("armcord" in window) return `ArmCord v${window.armcord.version}`; // @ts-expect-error diff --git a/src/plugins/reviewDB/index.tsx b/src/plugins/reviewDB/index.tsx index 7423cc57..caf9bacb 100644 --- a/src/plugins/reviewDB/index.tsx +++ b/src/plugins/reviewDB/index.tsx @@ -169,4 +169,4 @@ export default definePlugin({ ); }, { noop: true }) -}); \ No newline at end of file +});