mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Fix for new feature "first match"
This commit is contained in:
parent
dbaf9955cb
commit
fc24efb957
@ -112,6 +112,12 @@ This <b>DOES NOT</b> allow Sick Beard to download non-english TV episodes!<br />
|
|||||||
<input type="checkbox" name="dvdorder" #if $show.dvdorder == 1 then "checked=\"checked\"" else ""# /><br/>
|
<input type="checkbox" name="dvdorder" #if $show.dvdorder == 1 then "checked=\"checked\"" else ""# /><br/>
|
||||||
(check this if you wish to use the DVD order instead of the Airing order)
|
(check this if you wish to use the DVD order instead of the Airing order)
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
|
<b>Archive on first match: </b>
|
||||||
|
#if $bestQualities
|
||||||
|
<input type="checkbox" name="archive_firstmatch" #if $show.archive_firstmatch == 1 then "checked=\"checked\"" else ""# /><br />
|
||||||
|
(check this to have the show archived after first match and download from your archive quality choices)
|
||||||
|
<br />
|
||||||
|
#end if
|
||||||
<input type="submit" id="submit" value="Submit" class="btn btn-primary" />
|
<input type="submit" id="submit" value="Submit" class="btn btn-primary" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
@ -44,8 +44,4 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<b>Archive on first match: </b>
|
|
||||||
<input type="checkbox" name="archive_firstmatch" #if $show.archive_firstmatch == 1 then "checked=\"checked\"" else ""# /><br />
|
|
||||||
(check this to have the show archived after first match and download from your archive quality choices)
|
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -236,7 +236,6 @@ class BTNProvider(generic.TorrentProvider):
|
|||||||
return [{}]
|
return [{}]
|
||||||
|
|
||||||
search_params = {'category': 'Episode'}
|
search_params = {'category': 'Episode'}
|
||||||
|
|
||||||
search_params['series'] = sanitizeSceneName(ep_obj.show.name)
|
search_params['series'] = sanitizeSceneName(ep_obj.show.name)
|
||||||
|
|
||||||
if ep_obj.show.air_by_date:
|
if ep_obj.show.air_by_date:
|
||||||
|
Loading…
Reference in New Issue
Block a user