diff --git a/src/plugins/betterNotes/index.tsx b/src/plugins/betterNotes/index.tsx index 7049a369..da41b973 100644 --- a/src/plugins/betterNotes/index.tsx +++ b/src/plugins/betterNotes/index.tsx @@ -32,10 +32,16 @@ export default definePlugin({ { find: "hideNote:", all: true, + // Some modules match the find but the replacement is returned untouched + noWarn: true, predicate: () => Vencord.Settings.plugins.BetterNotesBox.hide, replacement: { - match: /hideNote:.+?(?=[,}])/g, - replace: "hideNote:true", + match: /hideNote:.+?(?=([,}].*?\)))/g, + replace: (m, rest) => { + const destructuringMatch = rest.match(/}=.+/); + if (destructuringMatch == null) return "hideNote:!0"; + return m; + } } }, {