mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-03-03 23:37:03 +00:00
swallow 404 errors when checking for covers on gametdb
This commit is contained in:
parent
96999f9175
commit
c3a23682e1
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user