重试间隔调整为1秒

This commit is contained in:
nilaoda 2022-09-19 12:37:08 +08:00
parent 1e076a166f
commit 02efb814e9
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ namespace N_m3u8DL_RE.Downloader
Logger.Debug(ex.ToString());
if (retryCount-- > 0)
{
await Task.Delay(200);
await Task.Delay(1000);
goto retry;
}
//throw new Exception("download failed", ex);