From 68847995326359be51e476f3860a1b5f40bbf836 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Fri, 31 Jan 2020 19:55:22 +0100 Subject: [PATCH] Fix Ordinamento Rai Play --- channels/raiplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/raiplay.py b/channels/raiplay.py index d238d834..54f4f59e 100644 --- a/channels/raiplay.py +++ b/channels/raiplay.py @@ -219,7 +219,7 @@ def episodios(item): for res in futures.as_completed(itlist): if res.result(): itemlist += res.result() - itemlist = sorted(itemlist, key=lambda it: it.title) + itemlist.reverse() if itemlist[0].VL: support.videolibrary(itemlist, item) return itemlist