mirror of
https://github.com/Readarr/Readarr
synced 2026-02-02 21:03:00 +01:00
Fixed: Catch any exceptions thrown identifying books
This commit is contained in:
parent
9653f9bbca
commit
65681cad10
1 changed files with 9 additions and 1 deletions
|
|
@ -84,7 +84,15 @@ public List<LocalEdition> Identify(List<LocalBook> localTracks, IdentificationOv
|
|||
i++;
|
||||
_logger.ProgressInfo($"Identifying book {i}/{releases.Count}");
|
||||
_logger.Debug($"Identifying book files:\n{localRelease.LocalBooks.Select(x => x.Path).ConcatToString("\n")}");
|
||||
IdentifyRelease(localRelease, idOverrides, config);
|
||||
|
||||
try
|
||||
{
|
||||
IdentifyRelease(localRelease, idOverrides, config);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_logger.Error(e, "Error identifying release");
|
||||
}
|
||||
}
|
||||
|
||||
watch.Stop();
|
||||
|
|
|
|||
Loading…
Reference in a new issue