aboutsummaryrefslogtreecommitdiffstats
path: root/0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch
diff options
context:
space:
mode:
author1024x22024-08-13 21:08:35 +0100
committer1024x22024-08-13 21:08:35 +0100
commitdf7d165228846d51beba93aaf133809d8f4824d4 (patch)
tree9546cfa515a19f03d95696fee7a59853df4b7b1c /0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch
parent81fbe676d788841cc8580815e2e2067759961fbe (diff)
Move patches into a folder
Diffstat (limited to '0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch')
-rw-r--r--0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch b/0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch
deleted file mode 100644
index e2d28a7..0000000
--- a/0007-SupportHelper-Disable-running-arbitrary-code-snippet.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 5dc5bfcf6b8cc2f12be7cbfcc770a759217c6d11 Mon Sep 17 00:00:00 2001
-From: 1024x2 <2pow11@gmail.com>
-Date: Sat, 20 Jul 2024 00:21:22 +0100
-Subject: [PATCH 7/8] SupportHelper: Disable running arbitrary code snippets
-
-Why is this even a thing?
----
- src/plugins/_core/supportHelper.tsx | 22 ----------------------
- 1 file changed, 22 deletions(-)
-
-diff --git a/src/plugins/_core/supportHelper.tsx b/src/plugins/_core/supportHelper.tsx
-index de8e37c7..7cb0044d 100644
---- a/src/plugins/_core/supportHelper.tsx
-+++ b/src/plugins/_core/supportHelper.tsx
-@@ -300,28 +300,6 @@ export default definePlugin({
- </Button>
- );
- }
--
-- if (props.message.author.id === VENBOT_USER_ID) {
-- const match = CodeBlockRe.exec(props.message.content || props.message.embeds[0]?.rawDescription || "");
-- if (match) {
-- buttons.push(
-- <Button
-- key="vc-run-snippet"
-- onClick={async () => {
-- try {
-- await AsyncFunction(match[1])();
-- showToast("Success!", Toasts.Type.SUCCESS);
-- } catch (e) {
-- new Logger(this.name).error("Error while running snippet:", e);
-- showToast("Failed to run snippet :(", Toasts.Type.FAILURE);
-- }
-- }}
-- >
-- Run Snippet
-- </Button>
-- );
-- }
-- }
- }
-
- return buttons.length
---
-2.45.2
-