pishash
pishash
Its a bug in build_listitems(), change the disp_title = '....' Then it should work. else: # Metadata off if video_type == 'episode': disp_title = '%sx%s %s' % (season, episode, title)...
or easier: add this meta['title'] = meta['TVShowTitle'] if META_ON: if video_type == 'episode': meta = **metaget**.get_episode_meta(title, imdbnum, season, episode) meta['TVShowTitle'] = title meta['title'] = meta['TVShowTitle'] Then you don't need to...
Please have a look into the code: Method build_listitems() (837) is called in create_item() (798) which is called in TVShowEpisodeList() (1085) I tested this on a raspberry and a macos...
replace the build_items() method with this: ``` def build_listitem(video_type, title, year, img, resurl, imdbnum='', season='', episode='',extra_cms=None, subs=None): if not subs: subs = [] if not extra_cms: extra_cms = [] menu_items...
