fix id3v23 tag writing

Fix due to Chris Cogburn on the mailing list.
This commit is contained in:
Adrian Sampson 2013-11-03 21:36:57 -08:00
parent 00fa333570
commit 5ba52d669e
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View 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: