From e3bcdfa4e62dfff53dedeeb14e2579f534006355 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Sun, 7 Sep 2025 10:13:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20CRON?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SfeduSchedule/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SfeduSchedule/Program.cs b/SfeduSchedule/Program.cs index f52653f..9dec7a1 100644 --- a/SfeduSchedule/Program.cs +++ b/SfeduSchedule/Program.cs @@ -13,7 +13,7 @@ var configuration = builder.Configuration; string? preinstalledJwtToken = configuration["TOKEN"]; string? tgChatId = configuration["TG_CHAT_ID"]; string? tgToken = configuration["TG_TOKEN"]; -string updateJwtCron = configuration["UPDATE_JWT_CRON"] ?? "0 4 * ? * *"; +string updateJwtCron = configuration["UPDATE_JWT_CRON"] ?? "0 0 4 ? * *"; // создать папку data если не существует var dataDirectory = Path.Combine(AppContext.BaseDirectory, "data");