summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/js/app.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index e6c9e8435..cd5eb96ba 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3012,8 +3012,11 @@ function rcube_webmail()
this.http_response = function(request_obj)
{
var ctype = request_obj.get_header('Content-Type');
- if (ctype)
+ if (ctype){
ctype = String(ctype).toLowerCase();
+ var ctype_array=ctype.split(";");
+ ctype = ctype_array[0];
+ }
if (request_obj.__lock)
this.set_busy(false);