2
0

Changed enumeration of chapters to include names

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

View File

@ -26,7 +26,11 @@ public class Program
int cIndex = 0; int cIndex = 0;
foreach (Chapter ch in chapters) foreach (Chapter ch in chapters)
{ {
string name = ch.name is not null && ch.name.Length > 0 ? ch.name : cIndex.ToString(); string name = cIndex.ToString();
if (ch.name is not null && ch.name.Length > 0)
name = ch.name;
else if (ch.chapterNumber is not null && ch.chapterNumber.Length > 0)
name = ch.chapterNumber;
Console.WriteLine($"{cIndex++}: {name}"); Console.WriteLine($"{cIndex++}: {name}");
} }
Console.WriteLine($"Select Chapters to download (0-{chapters.Length - 1}) [range x-y or 'a' for all]: "); Console.WriteLine($"Select Chapters to download (0-{chapters.Length - 1}) [range x-y or 'a' for all]: ");