Optimize slow patches
This commit is contained in:
parent
832e874c35
commit
e7956413e2
1 changed files with 2 additions and 2 deletions
|
@ -323,7 +323,7 @@ export default definePlugin({
|
||||||
replacement: [
|
replacement: [
|
||||||
{
|
{
|
||||||
// Add deleted=true to all target messages in the MESSAGE_DELETE event
|
// Add deleted=true to all target messages in the MESSAGE_DELETE event
|
||||||
match: /function (\i)\((\i)\){let.+?((?:\i\.){2})getOrCreate.+?}(?=function.*MESSAGE_DELETE:\1)/,
|
match: /function (?=.+?MESSAGE_DELETE:(\i))\1\((\i)\){let.+?((?:\i\.){2})getOrCreate.+?}(?=function)/,
|
||||||
replace:
|
replace:
|
||||||
"function $1($2){" +
|
"function $1($2){" +
|
||||||
" var cache = $3getOrCreate($2.channelId);" +
|
" var cache = $3getOrCreate($2.channelId);" +
|
||||||
|
@ -333,7 +333,7 @@ export default definePlugin({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Add deleted=true to all target messages in the MESSAGE_DELETE_BULK event
|
// Add deleted=true to all target messages in the MESSAGE_DELETE_BULK event
|
||||||
match: /function (\i)\((\i)\){let.+?((?:\i\.){2})getOrCreate.+?}(?=function.*MESSAGE_DELETE_BULK:\1)/,
|
match: /function (?=.+?MESSAGE_DELETE_BULK:(\i))\1\((\i)\){let.+?((?:\i\.){2})getOrCreate.+?}(?=function)/,
|
||||||
replace:
|
replace:
|
||||||
"function $1($2){" +
|
"function $1($2){" +
|
||||||
" var cache = $3getOrCreate($2.channelId);" +
|
" var cache = $3getOrCreate($2.channelId);" +
|
||||||
|
|
Loading…
Reference in a new issue