minor refactors
This commit is contained in:
parent
3dcbcf42ed
commit
323b8f2fb9
9 changed files with 49 additions and 47 deletions
|
|
@ -20,8 +20,8 @@ namespace AaxDecrypter
|
|||
public override void SetCoverArt(byte[] coverArt)
|
||||
{
|
||||
base.SetCoverArt(coverArt);
|
||||
if (coverArt is not null)
|
||||
AaxFile?.AppleTags.SetCoverArt(coverArt);
|
||||
if (coverArt is not null && AaxFile?.AppleTags is not null)
|
||||
AaxFile.AppleTags.Cover = coverArt;
|
||||
}
|
||||
|
||||
/// <summary>Optional step to run after Metadata is retrieved</summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue