mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Version 2.0.6.0 - Don't die on 503s, retry
This commit is contained in:
@ -11,6 +11,7 @@ using Wabbajack.Common.Exceptions;
|
|||||||
using Wabbajack.Common.Serialization.Json;
|
using Wabbajack.Common.Serialization.Json;
|
||||||
using Wabbajack.Lib.Validation;
|
using Wabbajack.Lib.Validation;
|
||||||
|
|
||||||
|
|
||||||
namespace Wabbajack.Lib.Downloaders
|
namespace Wabbajack.Lib.Downloaders
|
||||||
{
|
{
|
||||||
public class HTTPDownloader : IDownloader, IUrlDownloader
|
public class HTTPDownloader : IDownloader, IUrlDownloader
|
||||||
@ -222,7 +223,7 @@ TOP:
|
|||||||
if (!await Download(newArchive, tmpFile.Path))
|
if (!await Download(newArchive, tmpFile.Path))
|
||||||
return default;
|
return default;
|
||||||
}
|
}
|
||||||
catch (HttpRequestException)
|
catch (HttpException)
|
||||||
{
|
{
|
||||||
return default;
|
return default;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user