We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc3c53a commit c7128a8Copy full SHA for c7128a8
sickchill/views/authentication.py
@@ -28,8 +28,7 @@ def post(self, next_=None):
28
logger.warning(_("User attempted a failed login to the SickChill web interface from IP: ") + self.request.remote_ip)
29
login_error = _("Incorrect username or password! Both username and password are case sensitive!")
30
31
- next_ = self.get_query_argument("next", next_)
32
- self.redirect(next_ or "/" + settings.DEFAULT_PAGE + "/")
+ self.redirect("/" + settings.DEFAULT_PAGE + "/")
33
34
35
class LogoutHandler(BaseHandler):
0 commit comments