mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
Fix #1903: scrub sometimes ignored id3v23
This commit is contained in:
parent
c18b5dbadd
commit
8a0b18c960
2 changed files with 4 additions and 1 deletions
|
|
@ -133,7 +133,8 @@ class ScrubPlugin(BeetsPlugin):
|
|||
item.try_write()
|
||||
if art:
|
||||
self._log.debug(u'restoring art')
|
||||
mf = mediafile.MediaFile(util.syspath(item.path))
|
||||
mf = mediafile.MediaFile(util.syspath(item.path),
|
||||
config['id3v23'].get(bool))
|
||||
mf.art = art
|
||||
mf.save()
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@ Fixes:
|
|||
* Fix a crash when iTunes Sound Check tags contained invalid data. :bug:`1895`
|
||||
* :doc:`/plugins/mbcollection`: The plugin now redacts your MusicBrainz
|
||||
password in the ``beet config`` output. :bug:`1907`
|
||||
* :doc:`/plugins/scrub`: Fix an occasional problem where scrubbing on import
|
||||
could undo the ``id3v23`` setting. :bug:`1903`
|
||||
|
||||
|
||||
1.3.17 (February 7, 2016)
|
||||
|
|
|
|||
Loading…
Reference in a new issue