diff --git a/Tranga/TaskExecutor.cs b/Tranga/TaskExecutor.cs index 83fb68d..dd4bd77 100644 --- a/Tranga/TaskExecutor.cs +++ b/Tranga/TaskExecutor.cs @@ -30,6 +30,8 @@ public static class TaskExecutor List newChapters = UpdateChapters(connector, publication, language, chapterCollection); foreach(Chapter newChapter in newChapters) connector.DownloadChapter(publication, newChapter); + connector.DownloadCover(publication); + connector.SaveSeriesInfo(publication); } private static List UpdateChapters(Connector connector, Publication publication, string language, Dictionary> chapterCollection)