diff --git a/src/Service/Jobs/ChineseNfoRegistry.cs b/src/Service/Jobs/ChineseNfoRegistry.cs index 570d52f..bd1a129 100644 --- a/src/Service/Jobs/ChineseNfoRegistry.cs +++ b/src/Service/Jobs/ChineseNfoRegistry.cs @@ -150,8 +150,15 @@ public class ChineseNfoRegistry : Registry, IChineseNfoRegistry ctn.episodeNfoPath = episode; _logger.LogInformation("ctn.episodeNfoPath: " + ctn.episodeNfoPath); - - await HandleEpisode(); + + try + { + await HandleEpisode(); + } + catch (Exception e) + { + Console.WriteLine(e); + } } } }