1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-03-04 18:39:39 -05:00

Fix for adding existing shows.

This commit is contained in:
echel0n 2014-04-30 20:05:35 -07:00
parent 1f74488a38
commit e6056c5745
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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: