diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2016-06-09 15:05:02 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-09 15:05:02 +0200 |
commit | 4c26abe228bedb0ebb0ffa5a6f5f399e16871880 (patch) | |
tree | 9bb486597a989cf6777bd7a0a750417cc8700d9a /core/Command/Encryption | |
parent | 90c1ec1c49798232c0c1303ccbddacac536b5768 (diff) | |
download | nextcloud-server-4c26abe228bedb0ebb0ffa5a6f5f399e16871880.tar.gz nextcloud-server-4c26abe228bedb0ebb0ffa5a6f5f399e16871880.zip |
Fix the FIXME (#25022)
Diffstat (limited to 'core/Command/Encryption')
-rw-r--r-- | core/Command/Encryption/DecryptAll.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php index d060918a506..83c6c1dc168 100644 --- a/core/Command/Encryption/DecryptAll.php +++ b/core/Command/Encryption/DecryptAll.php @@ -129,8 +129,7 @@ class DecryptAll extends Command { } $uid = $input->getArgument('user'); - //FIXME WHEN https://github.com/owncloud/core/issues/24994 is fixed - if ($uid === null) { + if ($uid === '') { $message = 'your ownCloud'; } else { $message = "$uid's account"; |