fix: fix default timezone can't be empty (#6992)

This commit is contained in:
Alexis Saettler
2023-10-31 13:59:47 +01:00
committed by GitHub
parent 3799ab5245
commit 3c9638db58
+1 -1
View File
@@ -198,6 +198,6 @@ class CountriesHelper
break;
}
return $timezone;
return $timezone ?? config('app.timezone');
}
}