diff --git a/src/Admin/Jobs/JobsHostedService.cs b/src/Admin/Jobs/JobsHostedService.cs index 5bbb451074..71fbcb312a 100644 --- a/src/Admin/Jobs/JobsHostedService.cs +++ b/src/Admin/Jobs/JobsHostedService.cs @@ -32,7 +32,7 @@ namespace Bit.Admin.Jobs TimeZoneInfo.FindSystemTimeZoneById("America/New_York"); if (_globalSettings.SelfHosted) { - timeZone = TimeZoneInfo.Utc; + timeZone = TimeZoneInfo.Local; } var everyTopOfTheHourTrigger = TriggerBuilder.Create() diff --git a/src/Billing/Jobs/JobsHostedService.cs b/src/Billing/Jobs/JobsHostedService.cs index 4dc5d3b64b..706517856b 100644 --- a/src/Billing/Jobs/JobsHostedService.cs +++ b/src/Billing/Jobs/JobsHostedService.cs @@ -31,7 +31,7 @@ namespace Bit.Billing.Jobs TimeZoneInfo.FindSystemTimeZoneById("America/New_York"); if (_globalSettings.SelfHosted) { - timeZone = TimeZoneInfo.Utc; + timeZone = TimeZoneInfo.Local; } var everyDayAtNinePmTrigger = TriggerBuilder.Create()