Fix CheckChapterIsDownloaded Directory does not exists exception returning 0 chapters
This commit is contained in:
parent
4f01c1166f
commit
9ccba6fba6
@ -187,7 +187,9 @@ public abstract class Connector
|
|||||||
public bool CheckChapterIsDownloaded(Publication publication, Chapter chapter)
|
public bool CheckChapterIsDownloaded(Publication publication, Chapter chapter)
|
||||||
{
|
{
|
||||||
string newFilePath = GetArchiveFilePath(publication, chapter);
|
string newFilePath = GetArchiveFilePath(publication, chapter);
|
||||||
FileInfo[] archives = new DirectoryInfo(Path.Join(downloadLocation, publication.folderName)).GetFiles("*.cbz");
|
if (!Directory.Exists(Path.Join(downloadLocation, publication.folderName)))
|
||||||
|
return false;
|
||||||
|
FileInfo[] archives = new DirectoryInfo(Path.Join(downloadLocation, publication.folderName)).GetFiles();
|
||||||
Regex chapterRex = new(@"(Vol.[0-9]*)*Ch.[0-9]+");
|
Regex chapterRex = new(@"(Vol.[0-9]*)*Ch.[0-9]+");
|
||||||
|
|
||||||
if (File.Exists(newFilePath))
|
if (File.Exists(newFilePath))
|
||||||
|
Loading…
Reference in New Issue
Block a user