This commit is contained in:
Michael Bucari-Tovo 2023-09-18 10:14:54 -06:00
parent f471c53139
commit 9152e12fe1
3 changed files with 11 additions and 4 deletions

View file

@ -375,8 +375,15 @@ namespace FileLiberator
{
if (Configuration.Instance.AllowLibationFixup)
{
e = OnRequestCoverArt();
abDownloader.SetCoverArt(e);
try
{
e = OnRequestCoverArt();
abDownloader.SetCoverArt(e);
}
catch (Exception ex)
{
Serilog.Log.Logger.Error(ex, "Failed to retrieve cover art from server.");
}
}
if (e is not null)