From 58ba4b3d75ce1716a05f2ad2ae67501e6eb6d79c Mon Sep 17 00:00:00 2001 From: Jakob Schnitzer Date: Thu, 18 Oct 2012 18:35:25 +0200 Subject: [PATCH] convert: fix album art embedding --- beetsplug/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 97584993a..270ec8df4 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -94,7 +94,7 @@ def convert_item(lib, dest_dir): artpath = lib.get_album(item).artpath if artpath and conf['embed']: - _embed(artpath, [dest_item]) + _embed(artpath, [item]) def convert_func(lib, config, opts, args):