CUERipper: When ripping disc a second time without reloading,

album art was added to file twice
This commit is contained in:
Grigory Chudov
2013-04-28 12:35:07 -04:00
parent f430157812
commit e0f3f7c4bd
3 changed files with 7 additions and 9 deletions

View File

@@ -2956,14 +2956,6 @@ namespace CUETools.Processor
}
}
public void AddAlbumArt(byte[] encoded)
{
var data = new TagLib.ByteVector(encoded);
var picture = new TagLib.Picture(data);
picture.Type = TagLib.PictureType.FrontCover;
_albumArt.Add(picture);
}
public void ResizeAlbumArt()
{
if (_albumArt == null)