fix(FakeNitro): more reliable patches (#304)
This commit is contained in:
parent
f2e0542614
commit
ebb8da0f23
1 changed files with 6 additions and 6 deletions
|
@ -71,8 +71,8 @@ export default definePlugin({
|
|||
"canUseEmojisEverywhere"
|
||||
].map(func => {
|
||||
return {
|
||||
match: new RegExp(`${func}:function\\(.+?}`),
|
||||
replace: `${func}:function(e){return true;}`
|
||||
match: new RegExp(`${func}:function\\(.+?\\{`),
|
||||
replace: "$&return true;"
|
||||
};
|
||||
})
|
||||
},
|
||||
|
@ -80,8 +80,8 @@ export default definePlugin({
|
|||
find: "canUseAnimatedEmojis:function",
|
||||
predicate: () => Settings.plugins.FakeNitro.enableStickerBypass === true,
|
||||
replacement: {
|
||||
match: /canUseStickersEverywhere:function\(.+?}/,
|
||||
replace: "canUseStickersEverywhere:function(e){return true;}"
|
||||
match: /canUseStickersEverywhere:function\(.+?\{/,
|
||||
replace: "$&return true;"
|
||||
},
|
||||
},
|
||||
{
|
||||
|
@ -101,8 +101,8 @@ export default definePlugin({
|
|||
"canStreamMidQuality"
|
||||
].map(func => {
|
||||
return {
|
||||
match: new RegExp(`${func}:function\\(.+?}`),
|
||||
replace: `${func}:function(e){return true;}`
|
||||
match: new RegExp(`${func}:function\\(.+?\\{`),
|
||||
replace: "$&return true;"
|
||||
};
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue