diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-03-25 05:42:26 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 08:42:26 +0000 |
commit | 92b84a9e947ead3e90f297c8bbbbe3079a389e35 (patch) | |
tree | a8d5469cc6a24fdfc8113ae39616871b6eeff203 | |
parent | bbf3c74cb206e427877f65cbb52f318abeb0cda0 (diff) | |
download | Vencord-92b84a9e947ead3e90f297c8bbbbe3079a389e35.tar.gz Vencord-92b84a9e947ead3e90f297c8bbbbe3079a389e35.tar.bz2 Vencord-92b84a9e947ead3e90f297c8bbbbe3079a389e35.zip |
Fix broken patches (#701)
-rw-r--r-- | src/plugins/alwaysTrust.ts | 6 | ||||
-rw-r--r-- | src/plugins/betterRoleDot.ts | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/alwaysTrust.ts b/src/plugins/alwaysTrust.ts index 8dde07f..79193b0 100644 --- a/src/plugins/alwaysTrust.ts +++ b/src/plugins/alwaysTrust.ts @@ -32,10 +32,10 @@ export default definePlugin({ } }, { - find: "\"github.com\":new RegExp(\"\\\\/releases\\\\S*\\\\/download\"),", + find: '"7z","ade","adp"', replacement: { - match: /const o=JSON.parse\('\[.+?'\)/, - replace: "const o=[]" + match: /JSON\.parse\('\[.+?'\)/, + replace: "[]" } } ] diff --git a/src/plugins/betterRoleDot.ts b/src/plugins/betterRoleDot.ts index 6ef92a8..62068c7 100644 --- a/src/plugins/betterRoleDot.ts +++ b/src/plugins/betterRoleDot.ts @@ -37,11 +37,11 @@ export default definePlugin({ }, }, { - find: '"username"===', + find: '"dot"===', all: true, predicate: () => Settings.plugins.BetterRoleDot.bothStyles, replacement: { - match: /"(?:username|dot)"===\w(?!\.\w)/g, + match: /"(?:username|dot)"===\i(?!\.\i)/g, replace: "true", }, }, |