Do not fetch the whole text file for the sidebar preview

Just fetch the first 10kb. This should be more than enough in 99% of the
cases. And avoid downloading a 10mb text file just to display a tiny
portion.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/5954/head
Roeland Jago Douma 7 years ago
parent bb865a55fe
commit 3aa819c62c
No known key found for this signature in database
GPG Key ID: F941078878347C0C

@ -35,7 +35,12 @@
},
getFileContent: function (path) {
return $.get(OC.linkToRemoteBase('files' + path));
return $.ajax({
url: OC.linkToRemoteBase('files' + path),
headers: {
'Range': 'bytes=0-10240'
}
});
}
};

Loading…
Cancel
Save