swallow 404 errors when checking for covers on gametdb

This commit is contained in:
13xforever 2018-09-08 19:14:19 +05:00 committed by Roberto Anić Banić
parent 96999f9175
commit c3a23682e1

View File

@ -55,6 +55,9 @@ namespace CompatBot.ThumbScrapper
}
catch (Exception e)
{
if (e is HttpRequestException hre && hre.Message.Contains("404"))
return null;
PrintError(e);
}
return null;