mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +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>
|
<tr>
|
||||||
<td><input type="checkbox" id="$show_id" class="dirCheck" checked=checked></td>
|
<td><input type="checkbox" id="$show_id" class="dirCheck" checked=checked></td>
|
||||||
<td><label for="$show_id">$curDir['display_dir']</label></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>
|
<td><a href="$sickbeard.indexerApi($indexer).config["show_url"]$curDir['existing_info'][0]">$curDir['existing_info'][1]</a></td>
|
||||||
#else:
|
#else:
|
||||||
<td>?</td>
|
<td>?</td>
|
||||||
|
|
|
@ -213,7 +213,7 @@ class TVCache():
|
||||||
return None
|
return None
|
||||||
|
|
||||||
if not parse_result.show:
|
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
|
return None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue