diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 824b04cebb02aedbed29724b5cf6e471dbd61f4e..ec2f159b4ca1650f838ab003b4d4460c8a2cc155 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -361,7 +361,8 @@ $(document).ready(function() {
 						}
 					}else{
 						data.submit().success(function(data, status) {
-							response = jQuery.parseJSON(data[0].body.innerText);
+							// in safari data is a string
+							response = jQuery.parseJSON(typeof data === 'string' ? data : data[0].body.innerText);
 							if(response[0] != undefined && response[0].status == 'success') {
 								var file=response[0];
 								delete uploadingFiles[file.name];