mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
fix id3v23 tag writing
Fix due to Chris Cogburn on the mailing list.
This commit is contained in:
parent
00fa333570
commit
5ba52d669e
2 changed files with 5 additions and 1 deletions
|
|
@ -942,7 +942,9 @@ class MediaFile(object):
|
|||
# In case this is an MP3 object, not an ID3 object.
|
||||
id3 = id3.tags
|
||||
id3.update_to_v23()
|
||||
self.mgfile.save()
|
||||
self.mgfile.save(v2_version=3)
|
||||
else:
|
||||
self.mgfile.save()
|
||||
|
||||
def delete(self):
|
||||
"""Remove the current metadata tag from the file.
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@ Little fixes:
|
|||
reliably (i.e., fewer "no tempo found" messages). Thanks to Peter Schnebel.
|
||||
* :doc:`/plugins/convert`: Fix an "Item has no library" error when using the
|
||||
``auto`` config option.
|
||||
* Fix an issue that caused the :ref:`id3v23` option to work only occasionally.
|
||||
|
||||
|
||||
New stuff:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue