diff --git a/CHANGES.md b/CHANGES.md index 0df8b79..91ac505 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,9 @@ -### 0.20.4 (2019-09-10 16:30:00 UTC) +### 0.20.5 (2019-10-18 00:01:00 UTC) + +* Fix order for option edit show/Other/"Keep up to" + + +### 0.20.4 (2019-09-10 16:30:00 UTC) * Change improve TVChaosUK search range, and also to recognise more of its random release names in results diff --git a/sickbeard/tv.py b/sickbeard/tv.py index 8de1876..24fd232 100644 --- a/sickbeard/tv.py +++ b/sickbeard/tv.py @@ -1290,7 +1290,7 @@ class TVShow(object): sqlResults = myDB.select( 'SELECT * FROM tv_episodes' ' WHERE showid = ? AND location != ""' - ' ORDER BY season, episode DESC', + ' ORDER BY season DESC , episode DESC', [self.indexerid]) kept = 0