Fix broken FakeNitro patch on canary
This commit is contained in:
parent
09f65b401e
commit
4222c7fd9f
1 changed files with 4 additions and 4 deletions
|
@ -212,15 +212,15 @@ export default definePlugin({
|
|||
}
|
||||
},
|
||||
{
|
||||
find: "canStreamHighQuality:function",
|
||||
find: "canUseHighVideoUploadQuality:function",
|
||||
predicate: () => settings.store.enableStreamQualityBypass,
|
||||
replacement: [
|
||||
"canUseHighVideoUploadQuality",
|
||||
"canStreamHighQuality",
|
||||
"canStreamMidQuality"
|
||||
// TODO: Remove the last two when they get removed from stable
|
||||
"(?:canStreamQuality|canStreamHighQuality|canStreamMidQuality)",
|
||||
].map(func => {
|
||||
return {
|
||||
match: new RegExp(`${func}:function\\(\\i\\){`),
|
||||
match: new RegExp(`${func}:function\\(\\i(?:,\\i)?\\){`),
|
||||
replace: "$&return true;"
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue