aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-26 16:10:49 +0200
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-11-06 15:26:16 +0100
commit2aab6bd2096fc83912182704ad70c25954396457 (patch)
tree3bd1d8dddaf2ecf53755d291077b989c830647f3 /core/Command
parent802da2b801c6b3c02bfcbb816316cf39e556911b (diff)
downloadnextcloud-server-2aab6bd2096fc83912182704ad70c25954396457.tar.gz
nextcloud-server-2aab6bd2096fc83912182704ad70c25954396457.zip
Fix icon for errors to be consistent with the others
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/SetupChecks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php
index e64f7a5058e..d266b62a0f2 100644
--- a/core/Command/SetupChecks.php
+++ b/core/Command/SetupChecks.php
@@ -63,7 +63,7 @@ class SetupChecks extends Base {
};
$emoji = match ($check->getSeverity()) {
'success' => '✓',
- 'error' => '❌',
+ 'error' => '✗',
'warning' => '⚠',
default => 'ℹ',
};