From 68925dbdff7c92d70bca0ff8dc16d63fd399a956 Mon Sep 17 00:00:00 2001 From: Lillith Date: Fri, 28 Jun 2024 19:42:45 -0400 Subject: [PATCH] fix: add warning that disabling the plugin will allow access --- src/plugins/passwordProtect/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/plugins/passwordProtect/index.tsx b/src/plugins/passwordProtect/index.tsx index 57e8469d8..5f0dd5c73 100644 --- a/src/plugins/passwordProtect/index.tsx +++ b/src/plugins/passwordProtect/index.tsx @@ -23,7 +23,7 @@ interface NSFWBlockProps { export default definePlugin({ name: "PasswordProtect", - description: "Passcode protect servers, channels, and dms", + description: "Passcode protect servers, channels, and dms. WARNING: Disabling the plugin will allow anyone to open the channels!", authors: [Devs.ImLvna], contextMenus: contextMenus, @@ -81,8 +81,4 @@ export default definePlugin({ stop() { saveData(); }, - - // navigate(href: string): boolean { - // return Math.random() < 0.5; - // }, });