Browse Source

Fix order for option edit show/Other/"Keep up to".

tags/release_0.20.5^2
Prinz23 6 years ago
committed by JackDandy
parent
commit
7b7f446f9f
  1. 7
      CHANGES.md
  2. 2
      sickbeard/tv.py

7
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

2
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

Loading…
Cancel
Save