mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix overwriting repack where renamed filename has '-' in title.
Change prevent overwriting release_name field with filename, if already set.
This commit is contained in:
parent
c74ed7a45f
commit
c6e47a9bed
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ class TVShow(object):
|
|||
except (InvalidNameException, InvalidShowException):
|
||||
pass
|
||||
|
||||
if ep_file_name and parse_result and None is not parse_result.release_group:
|
||||
if ep_file_name and parse_result and None is not parse_result.release_group and not curEpisode.release_name:
|
||||
logger.log(
|
||||
'Name %s gave release group of %s, seems valid' % (ep_file_name ,parse_result.release_group),
|
||||
logger.DEBUG)
|
||||
|
|
Loading…
Reference in a new issue