diff options
| author | praschke <stel@comfy.monster> | 2023-10-29 16:08:53 +0000 | 
|---|---|---|
| committer | praschke <stel@comfy.monster> | 2023-10-29 16:08:53 +0000 | 
| commit | 9c003ec233136690c4efcee15341352400ce145d (patch) | |
| tree | c04b5cd89a3ecae9f0bc6efdb8ae644ffdc62c0a /ext/js | |
| parent | 55897b2b29e88ffd0c9140d03b9e74c4a94d98bd (diff) | |
remove webRequest from chrome for real
Diffstat (limited to 'ext/js')
| -rw-r--r-- | ext/js/background/request-builder.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/js/background/request-builder.js b/ext/js/background/request-builder.js index 663e242b..bf770964 100644 --- a/ext/js/background/request-builder.js +++ b/ext/js/background/request-builder.js @@ -313,7 +313,7 @@ class RequestBuilder {              await this._updateDynamicRules({addRules});              try { -                return await this._fetchInternal(url, init, null); +                return await fetch(url, init);              } finally {                  await this._tryUpdateDynamicRules({removeRuleIds: [id]});              } |