From db50f53f6db6a3564f65dbe51454b5b4d80fb9ee Mon Sep 17 00:00:00 2001 From: duke Date: Sun, 27 Oct 2024 10:58:43 -0400 Subject: [PATCH] fix nin0ware Signed-off-by: duke --- index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.ts b/index.ts index f3f37d2..d941fc0 100644 --- a/index.ts +++ b/index.ts @@ -14,12 +14,13 @@ import { GuildMemberStore, UserStore } from "@webpack/common"; import { PluginMeta } from "~plugins"; import SettingsPlugin from "../../plugins/_core/settings"; -const clientVersion = (() => { +const clientVersion = () => { const version = IS_DISCORD_DESKTOP ? DiscordNative.app.getVersion() : IS_VESKTOP ? VesktopNative.app.getVersion() : null; - const name = IS_DISCORD_DESKTOP ? 'Desktop' : IS_VESKTOP ? "Vesktop" : typeof unsafeWindow !== "undefined" ? "UserScript" : "Web"; + // @ts-ignore + const name = IS_DISCORD_DESKTOP ? "Desktop" : IS_VESKTOP ? "Vesktop" : typeof unsafeWindow !== "undefined" ? "UserScript" : "Web"; return `${name}${version ? ` v${version}` : ''}`; -})(); +}; let uptime = Date.now(); const lines = `\ @@ -112,7 +113,7 @@ export default definePlugin({ const { username } = UserStore.getCurrentUser(); const info: Record = { version: `${VERSION} ~ ${gitHash}${SettingsPlugin.additionalInfo} - ${Intl.DateTimeFormat(navigator.language, { dateStyle: "medium" }).format(BUILD_TIMESTAMP)}`, - client: `${t(window.GLOBAL_ENV.RELEASE_CHANNEL)} ~ ${clientVersion}`, + client: `${t(window.GLOBAL_ENV.RELEASE_CHANNEL)} ~ ${clientVersion()}`, // @ts-ignore platform: navigator.userAgentData?.platform ?? navigator.platform, plugins: getEnabledPlugins(),