Fix submission page bug in subdomain

This commit is contained in:
cuom1999 2023-01-27 16:52:35 -06:00
parent 65eb49a840
commit 9a208ca108
2 changed files with 6 additions and 2 deletions

View file

@ -114,5 +114,6 @@ class SubdomainMiddleware(object):
reverse("auth_login") + "?next=" + urlquote(request.path)
)
except ObjectDoesNotExist:
pass
scheme = "https" if settings.DMOJ_SSL > 0 else "http"
return HttpResponseRedirect(scheme + "://" + site)
return self.get_response(request)