aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-04-05 10:14:55 +0200
committerGitHub <noreply@github.com>2023-04-05 10:14:55 +0200
commit8f550398c4c882eed00f09d8e40b074183b8aa93 (patch)
tree44d5c2d89124844c7a0941373a23c4b3a43ba412 /apps/encryption
parent88ab6d452b45c6d80f3bd84f919453286273e5e7 (diff)
parent6633b4ced65f97495b1c123a9283c6f187debf41 (diff)
downloadnextcloud-server-8f550398c4c882eed00f09d8e40b074183b8aa93.tar.gz
nextcloud-server-8f550398c4c882eed00f09d8e40b074183b8aa93.zip
Merge pull request #36836 from nextcloud/fix/view-type-cleanup
Tidy up typing in OC\Files\View
Diffstat (limited to 'apps/encryption')
-rw-r--r--apps/encryption/tests/Command/FixEncryptedVersionTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/Command/FixEncryptedVersionTest.php b/apps/encryption/tests/Command/FixEncryptedVersionTest.php
index 5c938b4350d..2a6c86ef5b2 100644
--- a/apps/encryption/tests/Command/FixEncryptedVersionTest.php
+++ b/apps/encryption/tests/Command/FixEncryptedVersionTest.php
@@ -263,7 +263,7 @@ Fixed the file: \"/$this->userId/files/world.txt\" with version 4", $output);
$cacheInfo = ['encryptedVersion' => 1, 'encrypted' => 1];
$cache1->put($fileCache1->getPath(), $cacheInfo);
- $absPath = $view->getLocalFolder(''). '/hello.txt';
+ $absPath = $storage1->getSourcePath('').$fileInfo1->getInternalPath();
// create unencrypted file on disk, the version stays
file_put_contents($absPath, 'hello contents');