Changed ComicInfo.xml to use chapternumber as "Number".

This commit is contained in:
2023-05-20 12:53:54 +02:00
parent 52f357021d
commit ff01bac9d4
3 changed files with 3 additions and 6 deletions

View File

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