Skip to content
Snippets Groups Projects
Commit 9af74a9c authored by Björn Schießle's avatar Björn Schießle
Browse files

use readfile() instead iof fopen() for file download over webdav.

fopen() didn't work for large files on some servers while readfile()
seems to work for all files on all configurations.
parent b4708691
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
*/
public function get() {
return OC_Filesystem::fopen($this->path,'r');
return OC_Filesystem::readfile($this->path);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment