Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-09-04 12:57:54 +02:00
Родитель 1f965d5590
Коммит ab585c73bc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -198,7 +198,7 @@ class Executor {
);
} catch (\InvalidArgumentException $e) {
$this->logger->logException($e);
return '';
return $this->l->t('An error occurred while running the command. Please ask an administrator to check the logs.');
}
}
}

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

@ -103,7 +103,7 @@ class ShellExecutor {
@exec($cmd, $output, $returnCode);
if ($returnCode) {
throw new \InvalidArgumentException('Chat command failed with return code: ' . $returnCode);
throw new \InvalidArgumentException('Chat command failed [Code: ' . $returnCode . ']: ' . $cmd);
}
return implode("\n", $output);