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
296 changed files with 15474 additions and 99 deletions
Showing only changes of commit 369901db78 - Show all commits

View File

@ -73,7 +73,7 @@ public class ScheduleSyncService : IHostedService, IDisposable
delay = 1; delay = 1;
_cancellationTokenSource = new CancellationTokenSource(); _cancellationTokenSource = new CancellationTokenSource();
_timer = new Timer(ExecuteTask, null, (int)delay, Timeout.Infinite); _timer = new Timer(ExecuteTask, null, (long)delay, Timeout.Infinite);
} }
private async void ExecuteTask(object? state) private async void ExecuteTask(object? state)