From 78c9b5b91949aaa1cb5d8fdb9a2e03930d779a33 Mon Sep 17 00:00:00 2001 From: marco Date: Tue, 14 Apr 2020 21:10:15 +0200 Subject: [PATCH] piccola miglioria qualityStr --- core/support.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/support.py b/core/support.py index 8b075cb6..fb8715dc 100755 --- a/core/support.py +++ b/core/support.py @@ -1241,7 +1241,9 @@ def addQualityTag(item, itemlist, data, patron): if qualityStr: try: - audio, video = qualityStr.split('.') + splitted = qualityStr.split('.') + video = splitted[-1] + audio = splitted[-2] descr = typo(video + ': ', 'color kod') + defQualVideo.get(video.upper(), '') + '\n' +\ typo(audio + ': ', 'color kod') + defQualAudio.get(audio.upper(), '') except: