Browse Source

Flag repair errors as error level in eventSource->send

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v25.0.0beta4
Côme Chilliet 1 year ago
parent
commit
0b9a878250
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      core/ajax/update.php
  2. 1
    1
      lib/public/IEventSource.php

+ 1
- 1
core/ajax/update.php View File

} elseif ($event instanceof RepairWarningEvent) { } elseif ($event instanceof RepairWarningEvent) {
$this->eventSource->send('notice', $this->l10n->t('Repair warning:') . ' ' . $event->getMessage()); $this->eventSource->send('notice', $this->l10n->t('Repair warning:') . ' ' . $event->getMessage());
} elseif ($event instanceof RepairErrorEvent) { } elseif ($event instanceof RepairErrorEvent) {
$this->eventSource->send('notice', $this->l10n->t('Repair error:') . ' ' . $event->getMessage());
$this->eventSource->send('error', $this->l10n->t('Repair error:') . ' ' . $event->getMessage());
} }
} }
} }

+ 1
- 1
lib/public/IEventSource.php View File

/** /**
* send a message to the client * send a message to the client
* *
* @param string $type
* @param string $type One of success, notice, error, failure and done. Used in core/js/update.js
* @param mixed $data * @param mixed $data
* *
* if only one parameter is given, a typeless message will be send with that parameter as data * if only one parameter is given, a typeless message will be send with that parameter as data

Loading…
Cancel
Save