From d6e1a16286b32fad91127e86b47469b60bf79ddf Mon Sep 17 00:00:00 2001 From: Ade Date: Sat, 22 Apr 2017 11:54:18 +1200 Subject: [PATCH] Pass full mb unicode names to beets Possibly fixes https://github.com/rembo10/headphones/issues/2919 --- headphones/postprocessor.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index e3deee23..de68b9fa 100755 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -955,10 +955,8 @@ def correctMetadata(albumid, release, downloaded_track_list): try: cur_artist, cur_album, prop = autotag.tag_album(items, - search_artist=helpers.latinToAscii( - release['ArtistName']), - search_album=helpers.latinToAscii( - release['AlbumTitle'])) + search_artist=release['ArtistName'], + search_album=release['AlbumTitle']) candidates = prop.candidates rec = prop.recommendation except Exception as e: