Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
302 changed files with 15818 additions and 99 deletions
Showing only changes of commit 93912caf01 - Show all commits

View File

@ -53,12 +53,12 @@ public class ScheduleController(ILogger<ScheduleController> logger, IOptionsSnap
throw new ControllerArgumentException("Incorrect cron value.");
if (config.Value.ScheduleSettings!.CronUpdateSchedule == cron)
return Ok(CronUpdateSchedule());
return CronUpdateSchedule();
config.Value.ScheduleSettings!.CronUpdateSchedule = cron;
config.Value.SaveSetting();
return Ok(CronUpdateSchedule());
return CronUpdateSchedule();
}
/// <summary>