Fixed: Default redirect URL for forms auth will use URL Base if configured

pull/4/head
Mark McDowall 8 years ago
parent 7ef1ca8a00
commit 50a0e9514e

@ -43,7 +43,7 @@ namespace NzbDrone.Api.Authentication
expiry = DateTime.UtcNow.AddDays(7);
}
return this.LoginAndRedirect(user.Identifier, expiry);
return this.LoginAndRedirect(user.Identifier, expiry, _configFileProvider.UrlBase + "/");
}
private Response Logout()

Loading…
Cancel
Save