From 12453e0b856f738050148eea59038d39f9720405 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:40:44 -0500 Subject: [PATCH] Fix ShowHiddenChannels Error --- src/plugins/showHiddenChannels/index.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/plugins/showHiddenChannels/index.tsx b/src/plugins/showHiddenChannels/index.tsx index 77a68af0..f65a820b 100644 --- a/src/plugins/showHiddenChannels/index.tsx +++ b/src/plugins/showHiddenChannels/index.tsx @@ -198,11 +198,6 @@ export default definePlugin({ match: /{channel:(\i),name:\i,muted:(\i).+?;/, replace: (m, channel, muted) => `${m}${muted}=$self.isHiddenChannel(${channel})?true:${muted};` }, - // Add the hidden eye icon if the channel is hidden - { - match: /\.name,{.{0,140}\.children.+?:null(?<=,channel:(\i).+?)/, - replace: (m, channel) => `${m},$self.isHiddenChannel(${channel})?$self.HiddenChannelIcon():null` - }, // Make voice channels also appear as muted if they are muted { match: /(?<=\.wrapper:\i\.notInteractive,)(.+?)if\((\i)\)return (\i\.MUTED);/,