🌍 Update timezone fallback for Nostr publishing command to use Europe/Berlin

This commit is contained in:
HolgerHatGarKeineNode
2025-12-11 02:13:17 +01:00
parent a8f1257948
commit deeb1f066d

View File

@@ -111,7 +111,7 @@ class PublishUnpublishedItems extends Command
private function configureForCountry(string $countryCode): void
{
// Set user timezone and locale based on country code
$timezone = self::TZ_MAP[$countryCode] ?? 'UTC';
$timezone = self::TZ_MAP[$countryCode] ?? 'Europe/Berlin';
config([
'app.user-timezone' => $timezone,
'app.locale' => in_array($countryCode, ['at', 'ch']) ? 'de' : $countryCode,