diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-13 15:12:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-13 15:12:07 +0200 |
commit | 99e17f6131bf0eb1762ddc13766b41fcd1942a29 (patch) | |
tree | 78d8b7d5fd9129ce2ca5989187c7243917863398 /program/js | |
parent | f0398c87d9bd472d23b6dfce6943d97fbf9fabf5 (diff) |
Fix timeout issue on drag&drop uploads (#1489170)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 885584b50..0dea59216 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6433,6 +6433,7 @@ function rcube_webmail() url: ref.url(ref.env.filedrop.action||'upload', { _id:ref.env.compose_id||ref.env.cid||'', _uploadid:ts, _remote:1 }), contentType: formdata ? false : 'multipart/form-data; boundary=' + boundary, processData: false, + timeout: 0, // disable default timeout set in ajaxSetup() data: formdata || multipart, headers: {'X-Roundcube-Request': ref.env.request_token}, beforeSend: function(xhr, s) { if (!formdata && xhr.sendAsBinary) xhr.send = xhr.sendAsBinary; }, |