重试上限后正常输出报错信息

This commit is contained in:
nilaoda 2022-12-12 21:17:10 +08:00
parent 7c90d83695
commit 5972cee7ff
1 changed files with 4 additions and 0 deletions

View File

@ -128,6 +128,10 @@ namespace N_m3u8DL_RE.Downloader
await Task.Delay(1000); await Task.Delay(1000);
goto retry; goto retry;
} }
else
{
Logger.WarnMarkUp($"[grey]{ex.Message.EscapeMarkup()}[/]");
}
//throw new Exception("download failed", ex); //throw new Exception("download failed", ex);
return null; return null;
} }