We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701e234 commit 2fe7710Copy full SHA for 2fe7710
1 file changed
lib/api/accounts/user-accounts.js
@@ -72,6 +72,8 @@ function firstTimeSignupRedirect (accountManager) {
72
// Only redirect browser (HTML) requests to first-time signup
73
if (!req.accepts('text/html')) { return next() }
74
75
+ if (req.path.endsWith('signup.html')) { return next() }
76
+
77
accountManager.accountExists()
78
.then(found => {
79
if (!found) {
0 commit comments