Fix #748
This commit is contained in:
parent
f471c53139
commit
9152e12fe1
3 changed files with 11 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue