Rename Connector.SearchChapters -> SelectChapters

Added "a(ll)"-option to SelectChapters
This commit is contained in:
2023-06-27 23:02:55 +02:00
parent 2833b7f22a
commit b3e1d39d0f
3 changed files with 6 additions and 3 deletions

View File

@ -514,7 +514,7 @@ public static class Tranga_Cli
while(selectedChapters is null || selectedChapters.Length < 1)
selectedChapters = Console.ReadLine();
return connector.SearchChapters(publication, selectedChapters);
return connector.SelectChapters(publication, selectedChapters);
}
private static Connector? SelectConnector(Connector[] connectors, Logger logger)