aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/revealAllSpoilers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/revealAllSpoilers.ts')
-rw-r--r--src/plugins/revealAllSpoilers.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/revealAllSpoilers.ts b/src/plugins/revealAllSpoilers.ts
index ead169f..9cb7b6b 100644
--- a/src/plugins/revealAllSpoilers.ts
+++ b/src/plugins/revealAllSpoilers.ts
@@ -32,8 +32,8 @@ export default definePlugin({
{
find: ".removeObscurity=function",
replacement: {
- match: /\.removeObscurity=function\((\i)\){/,
- replace: ".removeObscurity=function($1){$self.reveal($1);"
+ match: /(?<=\.removeObscurity=function\((\i)\){)/,
+ replace: (_, event) => `$self.reveal(${event});`
}
}
],