Skip to content

Commit 612026c

Browse files
committed
add missing error parameter to xhr error handling
1 parent 279910d commit 612026c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/AppVersionProxy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function readConfig(success, fail) {
2424
}
2525
});
2626

27-
xhr.addEventListener("error", function () {
27+
xhr.addEventListener("error", function (e) {
2828
fail(e);
2929
});
3030
xhr.open("get", "config.xml", true);

0 commit comments

Comments
 (0)