mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
fix for webdav
This commit is contained in:
parent
dc8164a3f0
commit
e88595638c
3 changed files with 4 additions and 4 deletions
|
|
@ -492,7 +492,7 @@ class Proxy extends \OC_FileProxy {
|
|||
if($fixSize > 0) {
|
||||
$size = $fixSize;
|
||||
|
||||
$fileInfo['encrypted'] = 1;
|
||||
$fileInfo['encrypted'] = true;
|
||||
$fileInfo['unencrypted_size'] = $size;
|
||||
|
||||
// put file info
|
||||
|
|
|
|||
|
|
@ -519,7 +519,7 @@ class Stream {
|
|||
}
|
||||
|
||||
// set encryption data
|
||||
$fileInfo['encrypted'] = 1;
|
||||
$fileInfo['encrypted'] = true;
|
||||
$fileInfo['size'] = $this->size;
|
||||
$fileInfo['unencrypted_size'] = $this->unencryptedSize;
|
||||
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ class Util {
|
|||
// Integration testing:
|
||||
|
||||
//// TODO: test new encryption with versioning
|
||||
//// TODO: test new encryption with sharing
|
||||
//// DONE: test new encryption with sharing
|
||||
//// TODO: test new encryption with proxies
|
||||
|
||||
|
||||
|
|
@ -533,7 +533,7 @@ class Util {
|
|||
if ( $realSize > 0 ) {
|
||||
|
||||
$cached = $this->view->getFileInfo( $path );
|
||||
$cached['encrypted'] = 1;
|
||||
$cached['encrypted'] = true;
|
||||
|
||||
// set the size
|
||||
$cached['unencrypted_size'] = $realSize;
|
||||
|
|
|
|||
Loading…
Reference in a new issue