git(revert): "Updated Support Helper to support M1+ Chips. (#141)"
Some checks are pending
Sync to Codeberg / Sync Codeberg and Github (push) Waiting to run
Test / Test (push) Waiting to run

the main function DiscordNative seems to be nuked in specific clients.
This commit is contained in:
Cortex 2025-02-24 16:04:30 -06:00
parent 2445a24cc3
commit 98342f3ab3

View file

@ -86,11 +86,7 @@ async function generateDebugInfoMessage() {
`v${VERSION} • [${gitHash}](<https://github.com/Equicord/Equicord/commit/${gitHash}>)` +
`${SettingsPlugin.additionalInfo} - ${Intl.DateTimeFormat("en-GB", { dateStyle: "medium" }).format(BUILD_TIMESTAMP)}`,
Client: `${RELEASE_CHANNEL} ~ ${client}`,
Platform: `${DiscordNative.process.platform === "darwin" ?
(DiscordNative.process.arch === "arm64" ? "MacSilicon" : "MacIntel") :
DiscordNative.process.platform === "win32" && DiscordNative.process.arch === "x64" ?
"Windows" :
`${DiscordNative.process.platform} ${DiscordNative.process.arch}`}`
Platform: window.navigator.platform
};
if (IS_DISCORD_DESKTOP) {
@ -100,8 +96,8 @@ async function generateDebugInfoMessage() {
const commonIssues = {
"NoRPC enabled": Vencord.Plugins.isPluginEnabled("NoRPC"),
"Activity Sharing disabled": tryOrElse(() => !ShowCurrentGame.getSetting(), false),
"Equicord Dev Build": !IS_STANDALONE,
"Has Userplugins": Object.values(PluginMeta).some(m => m.userPlugin),
"Equicord DevBuild": !IS_STANDALONE,
"Has UserPlugins": Object.values(PluginMeta).some(m => m.userPlugin),
"More than two weeks out of date": BUILD_TIMESTAMP < Date.now() - 12096e5,
};