This commit is contained in:
Joe Milazzo 2024-11-16 09:20:28 -06:00 committed by GitHub
parent 6a75291a67
commit c849eff33e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 190 additions and 35 deletions

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)