diff --git a/index.ts b/index.ts index 4c90944..9d34bcf 100644 --- a/index.ts +++ b/index.ts @@ -15,12 +15,13 @@ 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; + // @ts-ignore const name = IS_DISCORD_DESKTOP ? "Desktop" : IS_VESKTOP ? "Vesktop" : typeof unsafeWindow !== "undefined" ? "UserScript" : "Web"; - return `${name}${version ? ` v${version}` : ""}`; -})(); + return `${name}${version ? ` v${version}` : ''}`; +}; const uptime = Date.now(); const lines = `\ @@ -113,7 +114,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)} ~ ${VERSION}`, + client: `${t(window.GLOBAL_ENV.RELEASE_CHANNEL)} ~ ${clientVersion()}`, // @ts-ignore platform: navigator.userAgentData?.platform ?? navigator.platform, plugins: getEnabledPlugins(),