mirror of
https://github.com/C9Glax/tranga.git
synced 2025-05-22 06:03:01 +02:00
Fix Name UpdateCoverJob
This commit is contained in:
parent
62b035f6c5
commit
503d9dfb5f
@ -12,5 +12,5 @@ public enum JobType : byte
|
|||||||
UpdateChaptersDownloadedJob = 6,
|
UpdateChaptersDownloadedJob = 6,
|
||||||
MoveMangaLibraryJob = 7,
|
MoveMangaLibraryJob = 7,
|
||||||
UpdateSingleChapterDownloadedJob = 8,
|
UpdateSingleChapterDownloadedJob = 8,
|
||||||
UpdateCoversJob = 9,
|
UpdateCoverJob = 9,
|
||||||
}
|
}
|
@ -21,7 +21,7 @@ public class UpdateCoverJob : Job
|
|||||||
|
|
||||||
|
|
||||||
public UpdateCoverJob(Manga manga, ulong recurrenceMs, Job? parentJob = null, ICollection<Job>? dependsOnJobs = null)
|
public UpdateCoverJob(Manga manga, ulong recurrenceMs, Job? parentJob = null, ICollection<Job>? dependsOnJobs = null)
|
||||||
: base(TokenGen.CreateToken(typeof(UpdateCoverJob)), JobType.UpdateCoversJob, recurrenceMs, parentJob, dependsOnJobs)
|
: base(TokenGen.CreateToken(typeof(UpdateCoverJob)), JobType.UpdateCoverJob, recurrenceMs, parentJob, dependsOnJobs)
|
||||||
{
|
{
|
||||||
this.MangaId = manga.MangaId;
|
this.MangaId = manga.MangaId;
|
||||||
this.Manga = manga;
|
this.Manga = manga;
|
||||||
@ -31,7 +31,7 @@ public class UpdateCoverJob : Job
|
|||||||
/// EF ONLY!!!
|
/// EF ONLY!!!
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal UpdateCoverJob(ILazyLoader lazyLoader, string jobId, ulong recurrenceMs, string mangaId, string? parentJobId)
|
internal UpdateCoverJob(ILazyLoader lazyLoader, string jobId, ulong recurrenceMs, string mangaId, string? parentJobId)
|
||||||
: base(lazyLoader, jobId, JobType.UpdateCoversJob, recurrenceMs, parentJobId)
|
: base(lazyLoader, jobId, JobType.UpdateCoverJob, recurrenceMs, parentJobId)
|
||||||
{
|
{
|
||||||
this.MangaId = mangaId;
|
this.MangaId = mangaId;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user