Skip to content
Snippets Groups Projects
Commit 84c56a5d authored by Florin Peter's avatar Florin Peter
Browse files

fix for zero size files

parent 51710566
No related branches found
No related tags found
No related merge requests found
......@@ -477,9 +477,9 @@ class Stream {
if (
$this->meta['mode']!='r'
and $this->meta['mode']!='rb'
and $this->meta['mode']!='rb'
and $this->size > 0
) {
// Disable encryption proxy to prevent recursive calls
$proxyStatus = \OC_FileProxy::$enabled;
\OC_FileProxy::$enabled = false;
......
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