Private GIT

Skip to content
Snippets Groups Projects
Commit 4ef7fbbb authored by chris-gh's avatar chris-gh Committed by miigotu
Browse files

Fixed sorting error where double/triple headers with the same air date & time...

Fixed sorting error where double/triple headers with the same air date & time show in random order. (#3776)
parent a9a6d448
No related branches found
No related tags found
No related merge requests found
......@@ -40,9 +40,9 @@ class ComingEpisodes(object):
"""
categories = ['snatched', 'missed', 'today', 'soon', 'later']
sorts = {
'date': itemgetter(b'snatchedsort', b'localtime'),
'network': itemgetter(b'network', b'localtime'),
'show': itemgetter(b'show_name', b'localtime'),
'date': itemgetter(b'snatchedsort', b'localtime', b'episode'),
'network': itemgetter(b'network', b'localtime', b'episode'),
'show': itemgetter(b'show_name', b'localtime', b'episode'),
}
def __init__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment