revert last changes
This commit is contained in:
parent
0811d2e304
commit
6bfd8bdf63
1 changed files with 1 additions and 3 deletions
|
@ -348,9 +348,7 @@ class Proxy extends \OC_FileProxy {
|
|||
// if file is encrypted return real file size
|
||||
if (is_array($fileInfo) && $fileInfo['encrypted'] === true) {
|
||||
// try to fix unencrypted file size if it doesn't look plausible
|
||||
if ((int)$fileInfo['size'] > 0 &&
|
||||
((int)$fileInfo['unencrypted_size'] === 0 ||
|
||||
(int)$fileInfo['size'] === (int)$fileInfo['unencrypted_size'])) {
|
||||
if ((int)$fileInfo['size'] > 0 && (int)$fileInfo['unencrypted_size'] === 0 ) {
|
||||
$fixSize = $util->getFileSize($path);
|
||||
$fileInfo['unencrypted_size'] = $fixSize;
|
||||
// put file info if not .part file
|
||||
|
|
Loading…
Reference in a new issue