From c18792f9d2f859d6296ba35053a34b6f41877875 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:59:06 -0400 Subject: [PATCH] Possible Fix --- src/Vencord.ts | 1 - src/equicordplugins/fixFileExtensions/index.tsx | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Vencord.ts b/src/Vencord.ts index a2b2f8c3..eee92344 100644 --- a/src/Vencord.ts +++ b/src/Vencord.ts @@ -45,7 +45,6 @@ import { SettingsRouter } from "./webpack/common"; if (IS_REPORTER) { require("./debug/runReporter"); Settings.plugins.CharacterCounter.enabled = false; - Settings.plugins.FixFileExtensions.enabled = false; } async function syncSettings() { diff --git a/src/equicordplugins/fixFileExtensions/index.tsx b/src/equicordplugins/fixFileExtensions/index.tsx index 2f8a2773..7e1b646a 100644 --- a/src/equicordplugins/fixFileExtensions/index.tsx +++ b/src/equicordplugins/fixFileExtensions/index.tsx @@ -7,7 +7,7 @@ import { Upload } from "@api/MessageEvents"; import { Settings } from "@api/Settings"; import { EquicordDevs } from "@utils/constants"; -import definePlugin from "@utils/types"; +import definePlugin, { ReporterTestable } from "@utils/types"; import { reverseExtensionMap } from "./components"; @@ -17,6 +17,7 @@ export default definePlugin({ name: "FixFileExtensions", authors: [EquicordDevs.thororen], description: "Fixes file extensions by renaming them to a compatible supported format if possible", + reporterTestable: ReporterTestable.None, patches: [ // Taken from AnonymiseFileNames {