diff --git a/sickchill/views/authentication.py b/sickchill/views/authentication.py index b43a9ed30d..d280bb4cb7 100644 --- a/sickchill/views/authentication.py +++ b/sickchill/views/authentication.py @@ -28,8 +28,7 @@ def post(self, next_=None): logger.warning(_("User attempted a failed login to the SickChill web interface from IP: ") + self.request.remote_ip) login_error = _("Incorrect username or password! Both username and password are case sensitive!") - next_ = self.get_query_argument("next", next_) - self.redirect(next_ or "/" + settings.DEFAULT_PAGE + "/") + self.redirect("/" + settings.DEFAULT_PAGE + "/") class LogoutHandler(BaseHandler):