mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix fault matching air by date shows by using correct episode/season strings in find search results.
This commit is contained in:
parent
f081fa7f71
commit
47347884cb
2 changed files with 6 additions and 5 deletions
|
@ -26,12 +26,13 @@
|
|||
* Change first run after install to set up the main db to the current schema instead of upgrading
|
||||
* Change don't create a backup from an initial zero byte main database file, PEP8 and code tidy up
|
||||
* Fix show list view when no shows exist and "Group show lists shows into" is set to anything other than "One Show List"
|
||||
* Add coverage testing and coveralls support
|
||||
* Fix fault matching air by date shows by using correct episode/season strings in find search results
|
||||
* Change add 'hevc', 'x265' and some langs to Config Search/Episode Search/Ignore result with any word
|
||||
* Update feedparser library 5.1.3 to 5.2.0 (8c62940)
|
||||
* Remove feedcache implementation and library
|
||||
* Change py2 exception clauses to py2/3 compatible clauses
|
||||
* Add coverage testing and coveralls support
|
||||
* Add py2/3 regression testing for exception clauses
|
||||
* Change add 'hevc', 'x265' and some langs to Config Search/Episode Search/Ignore result with any word.
|
||||
* Change py2 exception clauses to py2/3 compatible clauses
|
||||
* Change py2 print statements to py2/3 compatible functions
|
||||
|
||||
[develop changelog]
|
||||
|
|
|
@ -285,7 +285,7 @@ class GenericProvider:
|
|||
# mark season searched for season pack searches so we can skip later on
|
||||
searched_scene_season = epObj.scene_season
|
||||
|
||||
if len(episodes) > 1:
|
||||
if len(episodes) > 1 and 'eponly' != search_mode:
|
||||
# get season search results
|
||||
for curString in self._get_season_search_strings(epObj):
|
||||
itemList += self._doSearch(curString, search_mode, len(episodes))
|
||||
|
@ -328,7 +328,7 @@ class GenericProvider:
|
|||
logger.log(u"Unable to parse the filename " + title + " into a valid episode", logger.DEBUG)
|
||||
continue
|
||||
except InvalidShowException:
|
||||
logger.log(u"Unable to parse the filename " + title + " into a valid show", logger.DEBUG)
|
||||
logger.log(u'No show name or scene exception matched the parsed filename ' + title, logger.DEBUG)
|
||||
continue
|
||||
|
||||
showObj = parse_result.show
|
||||
|
|
Loading…
Reference in a new issue