From 542bc34defbd39a49c21d7a7200b1018d994ec30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Fri, 12 Mar 2021 17:27:34 +0300 Subject: [PATCH] use app name instead of core --- app/Notifications/Install/UpdateFailed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/Install/UpdateFailed.php b/app/Notifications/Install/UpdateFailed.php index 348eafa6f..4fb418f69 100644 --- a/app/Notifications/Install/UpdateFailed.php +++ b/app/Notifications/Install/UpdateFailed.php @@ -111,7 +111,7 @@ class UpdateFailed extends Notification protected function getAliasName() { if ($this->event->alias == 'core') { - return ucfirst($this->event->alias); + return config('app.name'); } $module = module($this->event->alias);