mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-20 14:44:05 +00:00
Fixed problem with saving extra performer FLAC tags containing non-ASCII characters. (#2719)
This commit is contained in:
2
NEWS.txt
2
NEWS.txt
@@ -8,6 +8,8 @@ Version 0.9.0beta1 - 2007-04-XX
|
||||
* Unable to specify album art file name mask. (#2655)
|
||||
* Fixed incorrect copying of album metadata to tracks. (#2698)
|
||||
* Added options to un-hide toolbars. (#2631)
|
||||
* Fixed problem with saving extra performer FLAC tags
|
||||
containing non-ASCII characters. (#2719)
|
||||
|
||||
Version 0.9.0alpha6 - 2007-04-04
|
||||
* New Features:
|
||||
|
||||
@@ -68,7 +68,7 @@ class VCommentFile(File):
|
||||
name, desc = name.split(':', 1)
|
||||
if desc:
|
||||
value += ' (%s)' % desc
|
||||
tags.setdefault(name.upper(), []).append(value)
|
||||
tags.setdefault(name.upper().encode('utf-8'), []).append(value)
|
||||
file.tags.update(tags)
|
||||
kwargs = {}
|
||||
if self._File == mutagen.flac.FLAC and self.config.setting["remove_id3_from_flac"]:
|
||||
|
||||
Reference in New Issue
Block a user