fix NoPendingCount

This commit is contained in:
thororen1234 2025-09-05 14:57:43 -04:00 committed by Vendicated
parent 0f29eab3ea
commit 4c7acbbbc7
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18

View file

@ -87,7 +87,7 @@ export default definePlugin({
replacement: { replacement: {
// The two groups inside the first group grab the minified names of the variables, // The two groups inside the first group grab the minified names of the variables,
// they are then referenced later to find unviewedTrialCount + unviewedDiscountCount. // they are then referenced later to find unviewedTrialCount + unviewedDiscountCount.
match: /(?<=\{unviewedTrialCount:(\i),unviewedDiscountCount:(\i)\}.{0,300}\i=)\1\+\2/, match: /(?<=\{unviewedTrialCount:(\i),unviewedDiscountCount:(\i)\}.{0,300})\1\+\2/,
replace: "0" replace: "0"
} }
} }