This commit is contained in:
Joe Milazzo
2024-11-16 09:20:28 -06:00
committed by GitHub
parent 6a75291a67
commit c849eff33e
7 changed files with 190 additions and 35 deletions
+2 -3
View File
@@ -213,9 +213,8 @@ public class ProcessSeries : IProcessSeries
return;
}
BackgroundJob.Enqueue(() =>
_metadataService.GenerateCoversForSeries(series.LibraryId, series.Id, false, false));
BackgroundJob.Enqueue(() => _wordCountAnalyzerService.ScanSeries(series.LibraryId, series.Id, forceUpdate));
await _metadataService.GenerateCoversForSeries(series.LibraryId, series.Id, false, false);
await _wordCountAnalyzerService.ScanSeries(series.LibraryId, series.Id, forceUpdate);
}
private async Task ReportDuplicateSeriesLookup(Library library, ParserInfo firstInfo, Exception ex)