From dfbcb708c0620005c929f447ff7140c45f8f4e2a Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Fri, 6 Jun 2008 00:20:22 +0000 Subject: [PATCH] fix movielist sort bug, by Tero Mannninen --- lib/python/Components/MovieList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2