From 65681cad10861db9035409b6b2ecfdd9d1651dfa Mon Sep 17 00:00:00 2001 From: ta264 Date: Tue, 25 Jan 2022 21:02:33 +0000 Subject: [PATCH] Fixed: Catch any exceptions thrown identifying books --- .../BookImport/Identification/IdentificationService.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/MediaFiles/BookImport/Identification/IdentificationService.cs b/src/NzbDrone.Core/MediaFiles/BookImport/Identification/IdentificationService.cs index 375b9435a..34de959e0 100644 --- a/src/NzbDrone.Core/MediaFiles/BookImport/Identification/IdentificationService.cs +++ b/src/NzbDrone.Core/MediaFiles/BookImport/Identification/IdentificationService.cs @@ -84,7 +84,15 @@ namespace NzbDrone.Core.MediaFiles.BookImport.Identification 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();