mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
Ignore NS_ERROR_ABORT in request monitor. Fix #1191.
This commit is contained in:
parent
4e32db1d39
commit
f1f5eb329d
@ -87,6 +87,8 @@ module.exports = class WebRequestMonitor
|
||||
return if req.error == 'net::ERR_INCOMPLETE_CHUNKED_ENCODING'
|
||||
return if req.error.indexOf('BLOCKED') >= 0
|
||||
return if req.error.indexOf('net::ERR_FILE_') == 0
|
||||
# Blocked by other extensions in Firefox.
|
||||
return if req.error.indexOf('NS_ERROR_ABORT') == 0
|
||||
return if req.url.indexOf('file:') == 0
|
||||
return if req.url.indexOf('chrome') == 0
|
||||
return if req.url.indexOf('about:') == 0
|
||||
|
Loading…
Reference in New Issue
Block a user