mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 07:13:23 -04:00
set unencrypted_size to 0 after decryption... so that the unencrypted_size gets re-calculated if encryption was enabled again
This commit is contained in:
parent
f3e341edac
commit
01de6c565a
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