mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Merge pull request #13470 from nextcloud/backport/13467/stable14
[stable14] Show the repair steps and repair info output in the web for better feedback
This commit is contained in:
commit
529e535d81
1 changed files with 2 additions and 0 deletions
|
|
@ -87,8 +87,10 @@ class FeedBackHandler {
|
|||
$this->eventSource->send('success', (string)$this->l10n->t('[%d / %d]: %s', [$this->progressStateStep, $this->progressStateMax, $this->currentStep]));
|
||||
break;
|
||||
case '\OC\Repair::step':
|
||||
$this->eventSource->send('success', (string)$this->l10n->t('Repair step: ') . $event->getArgument(0));
|
||||
break;
|
||||
case '\OC\Repair::info':
|
||||
$this->eventSource->send('success', (string)$this->l10n->t('Repair info: ') . $event->getArgument(0));
|
||||
break;
|
||||
case '\OC\Repair::warning':
|
||||
$this->eventSource->send('notice', (string)$this->l10n->t('Repair warning: ') . $event->getArgument(0));
|
||||
|
|
|
|||
Loading…
Reference in a new issue