From e0aac7de4a46272652560e82b5ceeb8f267ef0d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Fri, 15 Nov 2019 06:51:59 -0500 Subject: [PATCH] Fix for episodes and movies subtitles sorting when detected language is None. --- views/episodes.tpl | 2 +- views/movie.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/views/episodes.tpl b/views/episodes.tpl index e0aaf4fbd..949788a39 100644 --- a/views/episodes.tpl +++ b/views/episodes.tpl @@ -222,7 +222,7 @@ %if episode['subtitles'] is not None: % actual_languages = ast.literal_eval(episode['subtitles']) - % actual_languages.sort() + % actual_languages = sorted(actual_languages, key=lambda x: (x is None, x)) %else: % actual_languages = '[]' %end diff --git a/views/movie.tpl b/views/movie.tpl index bca765709..21038aa81 100644 --- a/views/movie.tpl +++ b/views/movie.tpl @@ -171,7 +171,7 @@ <% subtitles_files = ast.literal_eval(str(details['subtitles'])) - subtitles_files.sort() + subtitles_files = sorted(subtitles_files, key=lambda x: (x is None, x)) if subtitles_files is not None: for subtitles_file in subtitles_files: if subtitles_file[0].endswith(':forced'):