Fixed progress tracking this time for realsies. resolves #5

This commit is contained in:
2023-06-21 17:30:31 +02:00
parent 9ed36c47b5
commit abc66511d8
2 changed files with 14 additions and 6 deletions

View File

@ -47,6 +47,9 @@ public class DownloadChapterTask : TrangaTask
internal void IncrementProgress(double amount)
{
this._dctProgress += amount;
this.lastChange = DateTime.Now;
if(this.parentTask is not null)
this.parentTask.lastChange = DateTime.Now;
}
public override string ToString()