aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib/Services/PassphraseService.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/lib/Services/PassphraseService.php')
-rw-r--r--apps/encryption/lib/Services/PassphraseService.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/encryption/lib/Services/PassphraseService.php b/apps/encryption/lib/Services/PassphraseService.php
index 4b3e83375f5..0786cd3399a 100644
--- a/apps/encryption/lib/Services/PassphraseService.php
+++ b/apps/encryption/lib/Services/PassphraseService.php
@@ -8,6 +8,7 @@ declare(strict_types=1);
namespace OCA\Encryption\Services;
+use OC\Files\Filesystem;
use OCA\Encryption\Crypto\Crypt;
use OCA\Encryption\KeyManager;
use OCA\Encryption\Recovery;
@@ -78,7 +79,7 @@ class PassphraseService {
}
$this->logger->error('Encryption could not update users encryption password');
-
+
// NOTE: Session does not need to be updated as the
// private key has not changed, only the passphrase
// used to decrypt it has changed
@@ -137,6 +138,6 @@ class PassphraseService {
* Init mount points for given user
*/
private function initMountPoints(IUser $user): void {
- \OC\Files\Filesystem::initMountPoints($user);
+ Filesystem::initMountPoints($user);
}
}