Fixed GetJobsLike, for empty publication, but existing chapter

This commit is contained in:
glax 2023-09-02 16:15:06 +02:00
parent 44f8d369c3
commit 22c4c0eb2c

View File

@ -101,7 +101,10 @@ public class JobBoss : GlobalBase
public IEnumerable<Job> GetJobsLike(MangaConnector? mangaConnector = null, Manga? publication = null,
Chapter? chapter = null)
{
return GetJobsLike(mangaConnector?.name, publication?.internalId, chapter?.chapterNumber);
if (chapter is not null)
return GetJobsLike(mangaConnector?.name, chapter.Value.parentManga.internalId, chapter?.chapterNumber);
else
return GetJobsLike(mangaConnector?.name, publication?.internalId);
}
public Job? GetJobById(string jobId)