1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-07-09 14:46:05 +02:00

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

@ -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]);
} }
} }