1
0
mirror of https://github.com/C9Glax/tranga-website.git synced 2025-02-21 02:30:13 +01: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++)
{
Console.WriteLine($"Downloading {selectedPub.sortName} Chapter {i}");
mangaDexConnector.DownloadChapter(selectedPub, chapters[start]);
mangaDexConnector.DownloadChapter(selectedPub, chapters[i]);
}
}