From c0805a285e7e67fee453b0f3e5376abdd6d38294 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 24 Aug 2023 20:58:51 +0200 Subject: [PATCH] update --- bootstrap/helpers/shared.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap/helpers/shared.php b/bootstrap/helpers/shared.php index d02522245..367d806df 100644 --- a/bootstrap/helpers/shared.php +++ b/bootstrap/helpers/shared.php @@ -231,8 +231,9 @@ function validate_cron_expression($expression_to_validate): bool function send_internal_notification(string $message): void { try { + $baseUrl = base_url(false); $team = Team::find(0); - $team->notify(new GeneralNotification('👀 Internal notifications: ' . $message)); + $team->notify(new GeneralNotification("👀 Internal notifications from {$baseUrl}: " . $message)); } catch (\Throwable $th) { ray($th->getMessage()); }