1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-05 21:03:17 +12:00

Fix network error message in logger

Related feedback:
- https://github.com/gorhill/uMatrix/issues/945#issuecomment-569792402

Regression from:
- https://github.com/gorhill/uMatrix/commit/9b292304d33a
This commit is contained in:
Raymond Hill 2019-12-31 09:35:19 -05:00
parent 8a39b0e171
commit ea688f3942
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -110,7 +110,7 @@ api.fetch = function(url, options = {}) {
const onErrorEvent = function() {
cleanup();
fail({ url }, errorCantConnectTo.replace('{{msg}}', url));
fail({ url }, errorCantConnectTo.replace('{{url}}', url));
};
const onTimeout = function() {