fix(core): ensure force https is always a bool

This commit is contained in:
peaklabs-dev
2025-03-30 01:51:35 +01:00
parent 78a946a701
commit e25f1bf18f
+1 -1
View File
@@ -37,7 +37,7 @@ final class AppServiceProvider extends ServiceProvider
*/
private function configureHttps(): void
{
if (App::isProduction() && config('app.force_https')) {
if (App::isProduction() && (bool) config('app.force_https')) {
URL::forceScheme('https');
}
}