From 1b993f65923c4f335026230cdc9148a3a8898e43 Mon Sep 17 00:00:00 2001 From: RemixDev Date: Tue, 26 May 2020 11:30:59 +0200 Subject: [PATCH] Fixed misstype in error generation --- deemix/app/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deemix/app/downloader.py b/deemix/app/downloader.py index fc0331f..e1482a0 100644 --- a/deemix/app/downloader.py +++ b/deemix/app/downloader.py @@ -750,7 +750,7 @@ def downloadTrackObj_wrap(dz, track, settings, bitrate, queueItem, interface): 'message': str(e), 'data': { 'id': track['SNG_ID'], - 'title': track['SNG_TITLE'] + (trackAPI['VERSION'] if 'VERSION' in trackAPI and trackAPI['VERSION'] and not trackAPI['VERSION'] in trackAPI['SNG_TITLE'] else ""), + 'title': track['SNG_TITLE'] + (track['VERSION'] if 'VERSION' in track and track['VERSION'] and not track['VERSION'] in track['SNG_TITLE'] else ""), 'artist': track['ART_NAME'] } }