mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-25 17:48:52 -05:00
git(revert): "Updated Support Helper to support M1+ Chips. (#141)"
the main function DiscordNative seems to be nuked in specific clients.
This commit is contained in:
parent
2445a24cc3
commit
98342f3ab3
1 changed files with 3 additions and 7 deletions
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue