mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Fix halting in mid flow of Add Existing Show which resulted in failure to scan statuses and filesizes.
This commit is contained in:
parent
d78838c2c7
commit
042ad5cafc
2 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
* Change white text in light theme on Manage / Episode Status Management page to black for better readability
|
||||
* Change TtN provider to parse new layout
|
||||
* Improve recognition of SD quality
|
||||
* Fix halting in mid flow of Add Existing Show which resulted in failure to scan statuses and filesizes
|
||||
|
||||
|
||||
### 0.10.0 (2015-08-06 11:05:00 UTC)
|
||||
|
|
|
@ -726,7 +726,7 @@ class TVShow(object):
|
|||
if None is not new_status:
|
||||
with cur_ep.lock:
|
||||
logger.log(u'STATUS: we have an associated file, so setting the status from %s to DOWNLOADED/%s'
|
||||
% (cur_ep.status, Quality.compositeStatus(Quality.DOWNLOADED, new_quality)), logger.DEBUG)
|
||||
% (cur_ep.status, Quality.compositeStatus(new_status, new_quality)), logger.DEBUG)
|
||||
cur_ep.status = Quality.compositeStatus(new_status, new_quality)
|
||||
|
||||
with cur_ep.lock:
|
||||
|
|
Loading…
Reference in a new issue