Changed accessiblity of DownloadChapter(string[] imageUrls, string saveArchiveFilePath) to protected so only inherited classes can call.

This commit is contained in:
glax 2023-05-18 20:57:45 +02:00
parent e8f25ca9d0
commit db5470769c

View File

@ -18,7 +18,7 @@ public abstract class Connector
protected abstract void DownloadImage(string url, string savePath);
public abstract void DownloadCover(Publication publication);
internal void DownloadChapter(string[] imageUrls, string saveArchiveFilePath)
protected void DownloadChapter(string[] imageUrls, string saveArchiveFilePath)
{
string tempFolder = Path.GetTempFileName();
File.Delete(tempFolder);