1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-04-18 14:23:18 +02:00

Check later

This commit is contained in:
glax 2023-05-20 01:35:19 +02:00
parent 621468f498
commit 3effc7aeb6

@ -34,7 +34,7 @@ public class TaskManager
foreach (TrangaTask task in _allTasks) foreach (TrangaTask task in _allTasks)
{ {
if(task.ShouldExecute()) if(task.ShouldExecute())
TaskExecutor.Execute(this._connectors, task, this._chapterCollection); TaskExecutor.Execute(this._connectors, task, this._chapterCollection); //Might crash here, when adding new Task while another Task is running. Check later
} }
Thread.Sleep(1000); Thread.Sleep(1000);
} }