Compare commits

..

No commits in common. "306cb87d67292eb4fb0e5a4bf4d9c599642cdf66" and "3ceee63dfc893d84733b8a2deaa6b83fb06a005d" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public abstract class GlobalBase
protected HashSet<LibraryConnector> libraryConnectors { get; init; } protected HashSet<LibraryConnector> libraryConnectors { get; init; }
protected List<Manga> cachedPublications { get; init; } protected List<Manga> cachedPublications { get; init; }
protected static readonly NumberFormatInfo numberFormatDecimalPoint = new (){ NumberDecimalSeparator = "." }; protected static readonly NumberFormatInfo numberFormatDecimalPoint = new (){ NumberDecimalSeparator = "." };
protected static readonly Regex baseUrlRex = new(@"https?:\/\/[0-9A-z\.-]*"); protected static readonly Regex baseUrlRex = new(@"https?:\/\/[0-9A-z\.]*");
protected GlobalBase(GlobalBase clone) protected GlobalBase(GlobalBase clone)
{ {

View File

@ -55,7 +55,7 @@ public class JobBoss : GlobalBase
Log($"Removing {job}"); Log($"Removing {job}");
job.Cancel(); job.Cancel();
this.jobs.Remove(job); this.jobs.Remove(job);
if(job.subJobs is not null && job.subJobs.Any()) if(job.subJobs is not null)
RemoveJobs(job.subJobs); RemoveJobs(job.subJobs);
ExportJob(job); ExportJob(job);
} }