Skip to content

Commit 9352148

Browse files
committed
Fixed bug with bypass blocking threshold
1 parent d11caa1 commit 9352148

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/providers/provider-engine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ globalThis.OspreyProviderEngine = (() => {
257257
};
258258

259259
const checkProviderCache = async (provider, lookupKey, targetUrl, expirationSeconds, onResult, globalAllowMatched) => {
260-
if (globalAllowMatched && !provider.bypassBlockingThreshold) {
260+
if (globalAllowMatched) {
261261
cacheService.markAllowed(provider.id, lookupKey, expirationSeconds).catch(() => {
262262
// ignored
263263
});

0 commit comments

Comments
 (0)