summaryrefslogtreecommitdiffstats
path: root/lib/private/files/stream/encryption.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/files/stream/encryption.php')
-rw-r--r--lib/private/files/stream/encryption.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/files/stream/encryption.php b/lib/private/files/stream/encryption.php
index 936bcb71e71..2e73e2927a7 100644
--- a/lib/private/files/stream/encryption.php
+++ b/lib/private/files/stream/encryption.php
@@ -229,6 +229,14 @@ class Encryption extends Wrapper {
$this->readOnly = true;
}
+ $sharePath = $this->fullPath;
+ if (!$this->storage->file_exists($this->internalPath)) {
+ $sharePath = dirname($sharePath);
+ }
+
+ $accessList = $this->file->getAccessList($sharePath);
+ $this->newHeader = $this->encryptionModule->begin($this->fullPath, $this->uid, $this->header, $accessList);
+
if (
$mode === 'w'
|| $mode === 'w+'
@@ -243,14 +251,6 @@ class Encryption extends Wrapper {
parent::stream_read($this->util->getHeaderSize());
}
- $sharePath = $this->fullPath;
- if (!$this->storage->file_exists($this->internalPath)) {
- $sharePath = dirname($sharePath);
- }
-
- $accessList = $this->file->getAccessList($sharePath);
- $this->newHeader = $this->encryptionModule->begin($this->fullPath, $this->uid, $this->header, $accessList);
-
return true;
}