fix check and improve error message

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2018-03-01 17:49:20 +01:00
Родитель 5080080a36
Коммит 31397debaf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 2378A753E2BF04F6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -146,8 +146,8 @@ class ChangeKeyStorageRoot extends Command {
'ownCloud will detect this folder as key storage root only if this file exists'
);
if ($result !== true) {
throw new \Exception("Can't write to new root folder. Please check the permissions and try again");
if (!$result) {
throw new \Exception("Can't access the new root folder. Please check the permissions and make sure that the folder is in your data folder");
}
}