Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Commit

Permalink
Fix network error message in logger
Browse files Browse the repository at this point in the history
Related feedback:
- #945 (comment)

Regression from:
- 9b292304d33a
  • Loading branch information
gorhill committed Dec 31, 2019
1 parent 8a39b0e commit ea688f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit ea688f3

Please sign in to comment.