From: Felix Domke Date: Fri, 6 Jun 2008 00:20:22 +0000 (+0000) Subject: fix movielist sort bug, by Tero Mannninen X-Git-Tag: 2.6.0~1158 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/dfbcb708c0620005c929f447ff7140c45f8f4e2a fix movielist sort bug, by Tero Mannninen --- diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index 07dd1152..a0bd7334 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -229,7 +229,7 @@ class MovieList(GUIComponent): ref = x[0] info = self.serviceHandler.info(ref) name = info and info.getName(ref) - return name and name.lower() or "" + return (name and name.lower() or "", -x[2]) def moveTo(self, serviceref): count = 0