mirror of
https://github.com/nextcloud/server.git
synced 2026-07-15 21:03:00 -04:00
Merge pull request #6222 from owncloud/enc_reset_enc_file_size
set unencrypted_size to 0 after decryption
This commit is contained in:
commit
36c286f879
1 changed files with 1 additions and 1 deletions
|
|
@ -770,7 +770,7 @@ class Util {
|
|||
\OC\Files\Filesystem::putFileInfo($relPath, array(
|
||||
'encrypted' => false,
|
||||
'size' => $size,
|
||||
'unencrypted_size' => $size,
|
||||
'unencrypted_size' => 0,
|
||||
'etag' => $fileInfo['etag']
|
||||
));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue