Browse Source

Merge branch 'master' into develop

tags/release_0.25.1
JackDandy 4 years ago
parent
commit
2b805d6849
  1. 5
      CHANGES.md
  2. 2
      sickbeard/webserve.py

5
CHANGES.md

@ -6,6 +6,11 @@
### 0.24.5 (2021-06-26 16:45:00 UTC)
* Fix restart after "Update Now" is clicked on UI, must manually restart from 0.24.0 until this release
### 0.24.4 (2021-06-25 03:00:00 UTC)
* Fix issue on certain py2 setups that created mishandling of 404's

2
sickbeard/webserve.py

@ -1903,7 +1903,7 @@ class Home(MainHandler):
return t.respond()
def restart(self, update_pkg=None, pid=None):
def restart(self, pid=None, update_pkg=None):
if str(pid) != str(sickbeard.PID):
return self.redirect('/home/')

Loading…
Cancel
Save