From e682814630e43e76123b6466ece5f5006141761c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E8=AF=9A?= Date: Mon, 29 Sep 2025 11:25:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BC=82=E5=B8=B8=E5=A4=84?= =?UTF-8?q?=E7=90=86=E4=BB=A5=E6=8D=95=E8=8E=B7=20HandleEpisode=20?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E4=B8=AD=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Service/Jobs/ChineseNfoRegistry.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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); + } } } }