mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-08 11:03:38 +00:00
Change pick up the stragglers late to the more security party.
This commit is contained in:
parent
dfdc5caec4
commit
7041713650
4 changed files with 4 additions and 1 deletions
|
@ -30,6 +30,7 @@
|
||||||
* Update xmltodict library 0.10.2 (375d3a6) to 0.11.0 (79ac9a4)
|
* Update xmltodict library 0.10.2 (375d3a6) to 0.11.0 (79ac9a4)
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
|
* Change pick up the stragglers late to the more security party
|
||||||
|
|
||||||
|
|
||||||
### 0.15.3 (2018-03-28 16:55:00 UTC)
|
### 0.15.3 (2018-03-28 16:55:00 UTC)
|
||||||
|
|
|
@ -827,6 +827,7 @@ $(document).ready(function(){
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
$.post(sbRoot + '/home/save_show_email', {
|
$.post(sbRoot + '/home/save_show_email', {
|
||||||
|
_xsrf: Cookies.get('_xsrf'),
|
||||||
show: show,
|
show: show,
|
||||||
emails: $('#show-email-list').val()},
|
emails: $('#show-email-list').val()},
|
||||||
function (data){
|
function (data){
|
||||||
|
|
|
@ -130,6 +130,7 @@ $(document).ready(function () {
|
||||||
$.SickGear.history.lastDeleteRecords = deleteRecords ? checked : '';
|
$.SickGear.history.lastDeleteRecords = deleteRecords ? checked : '';
|
||||||
$.post($.SickGear.Root + '/history/watched',
|
$.post($.SickGear.Root + '/history/watched',
|
||||||
{
|
{
|
||||||
|
_xsrf: Cookies.get('_xsrf'),
|
||||||
tvew_id: delArr.join('|'),
|
tvew_id: delArr.join('|'),
|
||||||
files: (deleteFiles ? '1' : ''),
|
files: (deleteFiles ? '1' : ''),
|
||||||
records: (deleteRecords ? '1' : '')
|
records: (deleteRecords ? '1' : '')
|
||||||
|
|
|
@ -250,7 +250,7 @@ def makeTorrentRssProvider(configString):
|
||||||
|
|
||||||
|
|
||||||
def getDefaultNewznabProviders():
|
def getDefaultNewznabProviders():
|
||||||
return '!!!'.join(['Sick Beard Index|http://lolo.sickbeard.com/|0|5030,5040|0|eponly|0|0|0',
|
return '!!!'.join(['Sick Beard Index|https://lolo.sickbeard.com/|0|5030,5040|0|eponly|0|0|0',
|
||||||
'NZBgeek|https://api.nzbgeek.info/||5030,5040|0|eponly|0|0|0',
|
'NZBgeek|https://api.nzbgeek.info/||5030,5040|0|eponly|0|0|0',
|
||||||
'NZBs.org|https://nzbs.org/||5030,5040|0|eponly|0|0|0',
|
'NZBs.org|https://nzbs.org/||5030,5040|0|eponly|0|0|0',
|
||||||
'DrunkenSlug|https://api.drunkenslug.com/||5030,5040|0|eponly|0|0|0',
|
'DrunkenSlug|https://api.drunkenslug.com/||5030,5040|0|eponly|0|0|0',
|
||||||
|
|
Loading…
Reference in a new issue