Browse Source

Merge branch 'feature/ChangeMoreSecurity' into develop

pull/1081/head
JackDandy 7 years ago
parent
commit
bb33f8fa2f
  1. 1
      CHANGES.md
  2. 1
      gui/slick/js/configNotifications.js
  3. 1
      gui/slick/js/confirmations.js
  4. 2
      sickbeard/providers/__init__.py

1
CHANGES.md

@ -30,6 +30,7 @@
* Update xmltodict library 0.10.2 (375d3a6) to 0.11.0 (79ac9a4)
[develop changelog]
* Change pick up the stragglers late to the more security party
### 0.15.3 (2018-03-28 16:55:00 UTC)

1
gui/slick/js/configNotifications.js

@ -827,6 +827,7 @@ $(document).ready(function(){
return
}
$.post(sbRoot + '/home/save_show_email', {
_xsrf: Cookies.get('_xsrf'),
show: show,
emails: $('#show-email-list').val()},
function (data){

1
gui/slick/js/confirmations.js

@ -130,6 +130,7 @@ $(document).ready(function () {
$.SickGear.history.lastDeleteRecords = deleteRecords ? checked : '';
$.post($.SickGear.Root + '/history/watched',
{
_xsrf: Cookies.get('_xsrf'),
tvew_id: delArr.join('|'),
files: (deleteFiles ? '1' : ''),
records: (deleteRecords ? '1' : '')

2
sickbeard/providers/__init__.py

@ -250,7 +250,7 @@ def makeTorrentRssProvider(configString):
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',
'NZBs.org|https://nzbs.org/||5030,5040|0|eponly|0|0|0',
'DrunkenSlug|https://api.drunkenslug.com/||5030,5040|0|eponly|0|0|0',

Loading…
Cancel
Save