diff options
Diffstat (limited to 'apps/files_encryption/ajax/getMigrationStatus.php')
-rw-r--r-- | apps/files_encryption/ajax/getMigrationStatus.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/ajax/getMigrationStatus.php b/apps/files_encryption/ajax/getMigrationStatus.php index a28ebfac7f7..4da035a97d4 100644 --- a/apps/files_encryption/ajax/getMigrationStatus.php +++ b/apps/files_encryption/ajax/getMigrationStatus.php @@ -18,7 +18,7 @@ $migrationCompleted = true; if ($user !== '' && $password !== '') { if (\OCP\User::checkPassword($user, $password)) { $util = new Util(new \OC_FilesystemView('/'), $user); - if ($util->getMigrationStatus($user) !== Util::MIGRATION_COMPLETED) { + if ($util->getMigrationStatus() !== Util::MIGRATION_COMPLETED) { $migrationCompleted = false; } } |