mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-30 16:33:37 +00:00
Fix web type detection for new propers.
This commit is contained in:
parent
e479856245
commit
6c3f70c2fe
2 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@
|
|||
* Fix load web dl types from db if url fetching fails
|
||||
* Change ManageSearches layout between collapsed Provider Failures tables from single to multi line
|
||||
* Fix display show page episode font color for Proview I
|
||||
* Fix web type detection for new propers
|
||||
|
||||
|
||||
### 0.13.15 (2018-01-26 10:30:00 UTC)
|
||||
|
|
|
@ -348,7 +348,7 @@ def _get_proper_list(aired_since_shows, recent_shows, recent_anime, proper_list=
|
|||
|
||||
if is_web:
|
||||
old_webdl_type = get_webdl_type(old_extra_no_name, old_name)
|
||||
new_webdl_type = get_webdl_type(cur_proper.extra_info_no_name, cur_proper.name)
|
||||
new_webdl_type = get_webdl_type(cur_proper.extra_info_no_name(), cur_proper.name)
|
||||
if old_webdl_type != new_webdl_type:
|
||||
logger.log('Skipping proper webdl source: [%s], does not match existing webdl source: [%s] for [%s]'
|
||||
% (old_webdl_type, new_webdl_type, cur_proper.name), logger.DEBUG)
|
||||
|
|
Loading…
Reference in a new issue