diff options
| author | Jo-Philipp Wich | 2019-06-07 10:51:27 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2019-07-07 13:36:26 +0000 |
| commit | 1605f29b6f6ebeaf00a27d556bad708bd1d2e836 (patch) | |
| tree | 4da457d1b70c010a61e4b7b2f46d2d9f9819ac42 | |
| parent | 0bcb9f9f1d5f30a0a06584ddf4956d754c705c9d (diff) | |
| download | luci-1605f29b6f6ebeaf00a27d556bad708bd1d2e836.tar.gz | |
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>
| -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 853bbfc05d..1e1c38bbed 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) { |