From 84b30d3be63ee0965178286ed850e68c71e6dffd Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 18 Dec 2021 12:29:09 +0100 Subject: [PATCH] Fix sort Community Channels --- specials/community.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specials/community.py b/specials/community.py index 0856b142..2e96cd1c 100644 --- a/specials/community.py +++ b/specials/community.py @@ -238,7 +238,7 @@ def peliculas(item, json='', key='', itemlist=[]): itemlist += itlist if item.sort: - itemlist.sort(key=lambda x: x.title, reverse=False) + itemlist.sort(key=lambda x: x.title.lower(), reverse=False) if Pagination and len(itemlist) >= Pagination: if inspect.stack()[1][3] != 'get_newest': item.title = support.typo(config.get_localized_string(30992), 'color kod bold')