mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
Merge pull request #446 from chriscogburn/patch-1
Fix for id3v23 to include config parameter to save
This commit is contained in:
commit
0923ea8da9
1 changed files with 2 additions and 2 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue