Fix Patches AGAIN!!!!
Some checks are pending
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-06-17 09:08:35 -04:00
parent 727abb429e
commit 9e588eeb77
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -32,10 +32,10 @@ export default definePlugin({
patches: [
// Taken from AnonymiseFileNames
{
find: "async uploadFilesSimple(",
find: "async uploadFiles(",
replacement: [
{
match: /async uploadFilesSimple\((\i)\){/,
match: /async uploadFiles\((\i)\){/,
replace: "$&$1.forEach($self.fixExt);"
}
],

View file

@ -79,10 +79,10 @@ export default definePlugin({
patches: [
{
find: "async uploadFilesSimple(",
find: "async uploadFiles(",
replacement: [
{
match: /async uploadFilesSimple\((\i)\){/,
match: /async uploadFiles\((\i)\){/,
replace: "$&$1.forEach($self.anonymise);"
}
],