From 5a329c25d0fe8483d4651000cdd1c623ff434daf Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Sat, 23 Nov 2019 13:18:04 +0100 Subject: [PATCH] Fix Community --- specials/community.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/specials/community.py b/specials/community.py index c2786c60..5088b6e1 100644 --- a/specials/community.py +++ b/specials/community.py @@ -229,6 +229,7 @@ def submenu(item): filter_list.sort() for filter in filter_list: + thumbnail = '' if item.filterkey in ['director','actors']: load_info = load_json('http://api.themoviedb.org/3/search/person/?api_key=' + tmdb_api + '&language=' + lang + '&query=' + filter) if load_info: @@ -768,7 +769,7 @@ def relative(key, json, path): if key == 'thumbnail': ret = json[key] if ':/' in json[key] else path + json[key] if '/' in json[key] else get_thumb(json[key]) if json[key] else '' else: - ret = json[key] if ':/' in json[key] else path + json[key] if '/' in json[key] else '' + ret = json[key] if ':/' in json[key] else path + json[key] if '/' in json[key] else '' else: ret = '' return ret