diff --git a/channels/discoveryplus.py b/channels/discoveryplus.py index 1684ad65..bb18910c 100644 --- a/channels/discoveryplus.py +++ b/channels/discoveryplus.py @@ -70,7 +70,7 @@ def live(item): logger.debug() itemlist =[] for name, values in liveDict().items(): - itemlist.append(item.clone(title=typo(name), fulltitle=name, plot=values['plot'], url=values['url'], id=values['id'], action='play', forcethumb=True, no_return=True)) + itemlist.append(item.clone(title=typo(name,'bold'), fulltitle=name, plot=values['plot'], url=values['url'], id=values['id'], action='play', forcethumb=True, no_return=True)) return support.thumb(itemlist, live=True) diff --git a/specials/filmontv.py b/specials/filmontv.py index 6ca99852..81040efe 100644 --- a/specials/filmontv.py +++ b/specials/filmontv.py @@ -249,7 +249,7 @@ def live(item): itlist = [executor.submit(load_live, ch.channel) for ch in channels] for res in futures.as_completed(itlist): if res.result(): - channel_name, itlist = res.rFesult() + channel_name, itlist = res.result() channels_dict[channel_name] = itlist for ch in channels: diff --git a/specials/globalsearch.py b/specials/globalsearch.py index 33b6e2b2..426c4cc4 100644 --- a/specials/globalsearch.py +++ b/specials/globalsearch.py @@ -750,6 +750,7 @@ def title_unify(title): import unicodedata u_title = '' + if type(title) == str: title = u'' + title for c in unicodedata.normalize('NFD', title): cat = unicodedata.category(c) if cat != 'Mn':