Skip to content

Commit 4adc73e

Browse files
authored
Merge pull request #483 from dbarzin/dev
fix HTTPS
2 parents f04aa4a + bd033c1 commit 4adc73e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function register()
2929
public function boot()
3030
{
3131
if (
32-
(App::environment('production') && (Config::get('app.force_https') == null))
32+
(App::environment('production') && !Config::has('app.force_https'))
3333
||
3434
Config::get('app.force_https')
3535
) {

0 commit comments

Comments
 (0)