Skip to content

Commit ea688f3

Browse files
committed
Fix network error message in logger
Related feedback: - gorhill#945 (comment) Regression from: - gorhill@9b292304d33a
1 parent 8a39b0e commit ea688f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/assets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ api.fetch = function(url, options = {}) {
110110

111111
const onErrorEvent = function() {
112112
cleanup();
113-
fail({ url }, errorCantConnectTo.replace('{{msg}}', url));
113+
fail({ url }, errorCantConnectTo.replace('{{url}}', url));
114114
};
115115

116116
const onTimeout = function() {

0 commit comments

Comments
 (0)