diff --git a/CHANGES.md b/CHANGES.md index 7abb97e..7761983 100644 --- a/CHANGES.md +++ b/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 diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index a79b14b..5a7341c 100644 --- a/sickbeard/webserve.py +++ b/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/')