mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
Merge branch 'next' into improve-cron-validation
This commit is contained in:
commit
19918ed6b8
2 changed files with 3 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class SendMessageToTelegramJob implements ShouldBeEncrypted, ShouldQueue
|
||||||
}
|
}
|
||||||
$response = Http::post($url, $payload);
|
$response = Http::post($url, $payload);
|
||||||
if ($response->failed()) {
|
if ($response->failed()) {
|
||||||
throw new \Exception('Telegram notification failed with '.$response->status().' status code.'.$response->body());
|
throw new \RuntimeException('Telegram notification failed with '.$response->status().' status code.'.$response->body());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,11 +34,13 @@
|
||||||
</style>
|
</style>
|
||||||
@if (config('app.name') == 'Coolify Cloud')
|
@if (config('app.name') == 'Coolify Cloud')
|
||||||
<script defer data-domain="app.coolify.io" src="https://analytics.coollabs.io/js/plausible.js"></script>
|
<script defer data-domain="app.coolify.io" src="https://analytics.coollabs.io/js/plausible.js"></script>
|
||||||
|
<script src="https://js.sentry-cdn.com/0f8593910512b5cdd48c6da78d4093be.min.js" crossorigin="anonymous"></script>
|
||||||
@endif
|
@endif
|
||||||
@auth
|
@auth
|
||||||
<script type="text/javascript" src="{{ URL::asset('js/echo.js') }}"></script>
|
<script type="text/javascript" src="{{ URL::asset('js/echo.js') }}"></script>
|
||||||
<script type="text/javascript" src="{{ URL::asset('js/pusher.js') }}"></script>
|
<script type="text/javascript" src="{{ URL::asset('js/pusher.js') }}"></script>
|
||||||
<script type="text/javascript" src="{{ URL::asset('js/apexcharts.js') }}"></script>
|
<script type="text/javascript" src="{{ URL::asset('js/apexcharts.js') }}"></script>
|
||||||
|
|
||||||
@endauth
|
@endauth
|
||||||
</head>
|
</head>
|
||||||
@section('body')
|
@section('body')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue