-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: recovery quirks in Firefox and Chromium (#807)
This fixes small quirks that did not break recovery, but made it bit confusing or inefficient. * fix: duplicated recovery tabs in Chromium Deduplicate `onErrorOccurred` events: sometimes Chrome produces two, possibly due to lack of async functions in webRequest APIs Closes #805 * fix: skip requests from DNS fixup logic in Firefox Firefox automatically adds 'www.' to TLD+1 names if initial DNS lookup failed. This produced bogus request+error which recovery logic is now aware of and ignores. Closes #804 * Other - make `onErrorOccurred` non-async (only Firefox supports those) - listen only for errors when `webRequest.ResourceType`=`main_frame` - reuse existing tab
- Loading branch information
Showing
3 changed files
with
49 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters