diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-06-07 12:51:27 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-07-07 15:36:26 +0200 |
commit | 1605f29b6f6ebeaf00a27d556bad708bd1d2e836 (patch) | |
tree | 4da457d1b70c010a61e4b7b2f46d2d9f9819ac42 /modules/luci-base/htdocs/luci-static/resources/luci.js | |
parent | 0bcb9f9f1d5f30a0a06584ddf4956d754c705c9d (diff) |
luci-base: luci.js: don't abort finished xhr objects
Calling abort() on a finished xhr object will clear properties such
as status which can confuse code relying on legacy LuCI request
helper functions.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources/luci.js')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/luci.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 853bbfc05..1e1c38bbe 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -393,11 +393,6 @@ .then(resolveFn.bind(this, response)) .catch(rejectFn.bind(this)); } - - try { - xhr.abort(); - } - catch(e) {} }, get: function(url, options) { |