fix: NoPendingCount (#1871)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
redstonekasi 2023-10-25 18:46:32 +02:00 committed by GitHub
parent 1a607639cc
commit 61fac0a8f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -84,8 +84,10 @@ export default definePlugin({
find: "showProgressBadge:", find: "showProgressBadge:",
predicate: () => settings.store.hidePremiumOffersCount, predicate: () => settings.store.hidePremiumOffersCount,
replacement: { replacement: {
match: /=\i\.unviewedTrialCount\+\i\.unviewedDiscountCount/, // The two groups inside the first group grab the minified names of the variables,
replace: "=0" // they are then referenced later to find unviewedTrialCount + unviewedDiscountCount.
match: /(?<=\{unviewedTrialCount:(\i),unviewedDiscountCount:(\i)\}.{0,200}\i=)\1\+\2/,
replace: "0"
} }
} }
], ],