From d0c3cb5779b394d1907f84b6c0e1540d7da6010c Mon Sep 17 00:00:00 2001 From: Chris Cogburn Date: Tue, 5 Nov 2013 21:27:26 -0600 Subject: [PATCH] Fix for id3v23 to include config parameter to save --- beetsplug/embedart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index d019ece77..613252b79 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -57,7 +57,7 @@ def _embed(path, items, maxwidth=0): )) continue f.art = data - f.save() + f.save(config['id3v23'].get(bool)) class EmbedCoverArtPlugin(BeetsPlugin): """Allows albumart to be embedded into the actual files. @@ -187,7 +187,7 @@ def clear(lib, query): )) continue mf.art = None - mf.save() + mf.save(config['id3v23'].get(bool)) # Automatically embed art into imported albums. @EmbedCoverArtPlugin.listen('album_imported')