mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix for adding existing shows.
This commit is contained in:
parent
1f74488a38
commit
e6056c5745
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
<tr>
|
||||
<td><input type="checkbox" id="$show_id" class="dirCheck" checked=checked></td>
|
||||
<td><label for="$show_id">$curDir['display_dir']</label></td>
|
||||
#if $curDir['existing_info'][1]:
|
||||
#if $curDir['existing_info'][1] and $indexer > 0:
|
||||
<td><a href="$sickbeard.indexerApi($indexer).config["show_url"]$curDir['existing_info'][0]">$curDir['existing_info'][1]</a></td>
|
||||
#else:
|
||||
<td>?</td>
|
||||
|
|
|
@ -213,7 +213,7 @@ class TVCache():
|
|||
return None
|
||||
|
||||
if not parse_result.show:
|
||||
logger.log(u"Couldn't find a show in our databases from " + name + ", unable to cache it", logger.DEBUG)
|
||||
logger.log(u"Couldn't find a show in our databases matching " + name + ", unable to cache it", logger.DEBUG)
|
||||
return None
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue