Merge pull request #873 from josdion/development

do not show release info if it contains only whitespace characters
This commit is contained in:
morpheus65535 2020-03-21 07:45:33 -04:00 committed by GitHub
commit 08a38f6505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -346,10 +346,15 @@ def manual_search(path, language, hi, forced, providers, providers_auth, sceneNa
not_matched = scores - matches
s.score = score
releases = ['n/a']
releases = []
if hasattr(s, 'release_info'):
if s.release_info is not None:
releases = s.release_info.split(',')
for s_item in s.release_info.split(','):
if s_item.strip():
releases.append(s_item)
if len(releases) == 0:
releases = ['n/a']
subtitles_list.append(
dict(score=round((score / max_score * 100), 2),