From deeb1f066d60633b275c4bacc9013a9e47168dff Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Thu, 11 Dec 2025 02:13:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=8D=20Update=20timezone=20fallback=20f?= =?UTF-8?q?or=20Nostr=20publishing=20command=20to=20use=20Europe/Berlin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/Nostr/PublishUnpublishedItems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Nostr/PublishUnpublishedItems.php b/app/Console/Commands/Nostr/PublishUnpublishedItems.php index 9862f2d..47285a5 100644 --- a/app/Console/Commands/Nostr/PublishUnpublishedItems.php +++ b/app/Console/Commands/Nostr/PublishUnpublishedItems.php @@ -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,