From 57c29eceab69198e0ebd2ca505a8baa5ed1d97eb Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Sat, 21 Mar 2020 15:24:04 +0100 Subject: [PATCH] Fix Community Channels --- specials/community.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specials/community.py b/specials/community.py index 73967bb5..6b9373e9 100644 --- a/specials/community.py +++ b/specials/community.py @@ -530,7 +530,7 @@ def submenu(item, json, key, itemlist = []): # filter results def filter_thread(filter, key, item, description): - thumbnail = plot = fanart = None + thumbnail = plot = fanart = '' if item.filterkey in ['actors', 'director']: dict_ = {'url': 'search/person', 'language': lang, 'query': filter, 'page': 1} tmdb_inf = tmdb.discovery(item, dict_=dict_) @@ -555,7 +555,7 @@ def filter_thread(filter, key, item, description): media_type=item.media_type, action='peliculas', thumbnail=thumbnail if thumbnail else item.thumbnail, - fanart=thumbnail if thumbnail else item.thumbnail, + fanart=fanart if fanart else item.fanart, plot=plot if plot else item.plot, path=item.path, filterkey=item.filterkey,