diff options
Diffstat (limited to 'src/plugins/showHiddenChannels/index.tsx')
-rw-r--r-- | src/plugins/showHiddenChannels/index.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plugins/showHiddenChannels/index.tsx b/src/plugins/showHiddenChannels/index.tsx index eb49468..318bad2 100644 --- a/src/plugins/showHiddenChannels/index.tsx +++ b/src/plugins/showHiddenChannels/index.tsx @@ -335,6 +335,14 @@ export default definePlugin({ match: /(?<=getChannel\((\i)\)\)(?=.{0,100}?selectVoiceChannel))/, replace: (_, channelId) => `&&!$self.isHiddenChannel({channelId:${channelId}})` } + }, + { + find: '.displayName="GuildChannelStore"', + replacement: { + // Make GuildChannelStore contain hidden channels for users in voice channels to appear in the guild tooltip + match: /isChannelGated\(.+?\)(?=\|\|)/, + replace: m => `${m}||true` + } } ], |