Ver código fonte

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>
Roeland Jago Douma 6 anos atrás
pai
commit
3aa819c62c
1 arquivos alterados com 6 adições e 1 exclusões
  1. 6 1
      apps/files/js/sidebarpreviewtext.js

+ 6 - 1
apps/files/js/sidebarpreviewtext.js

@@ -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'
+				}
+			});
 		}
 	};