#108 Fixed redirect loop for /signup when already logged in

master
Keith Irwin 2017-08-22 18:55:52 -04:00
parent 88ca3e4b68
commit a874c88c51
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ const
// Path for redirects
let nextPath = ((req.query.next)?req.query.next: req.path.substring(0,req.path.indexOf('#')) || req.path );
if ( nextPath.substring(0,6)!=='/login' && nextPath.substring(0,7)!=='/logout' && nextPath.substring(0,7)!=='/static' ){
if ( nextPath.substring(0,6)!=='/login' && nextPath.substring(0,7)!=='signup' && nextPath.substring(0,7)!=='/logout' && nextPath.substring(0,7)!=='/static' ){
req.session.next = nextPath+'#';
debug(`Set redirect path to ${nextPath}#`);
}