fixed issue where same chapter was downloaded

This commit is contained in:
glax 2023-05-18 18:21:43 +02:00
parent 5adceb7608
commit ff1e775763

View File

@ -57,7 +57,7 @@ public class Program
for (int i = start; i < end + 1; i++) for (int i = start; i < end + 1; i++)
{ {
Console.WriteLine($"Downloading {selectedPub.sortName} Chapter {i}"); Console.WriteLine($"Downloading {selectedPub.sortName} Chapter {i}");
mangaDexConnector.DownloadChapter(selectedPub, chapters[start]); mangaDexConnector.DownloadChapter(selectedPub, chapters[i]);
} }
} }