mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
realPath should contain the path to the file we want to read, e.g. the version and not the original file
This commit is contained in:
parent
5ccb9dfa7e
commit
966eb4b084
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ class Encryption implements IEncryptionModule {
|
|||
*/
|
||||
public function begin($path, $user, $mode, array $header, array $accessList) {
|
||||
$this->path = $this->getPathToRealFile($path);
|
||||
$this->realPath = $this->path;
|
||||
$this->realPath = $path;
|
||||
$this->accessList = $accessList;
|
||||
$this->user = $user;
|
||||
$this->isWriteOperation = false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue