We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a67c509 + 8a04c9a commit 25a5413Copy full SHA for 25a5413
DesktopModules/Vanjaro/UXManager/Extensions/Menu/Users/Managers/LoginManager.cs
@@ -33,10 +33,10 @@ public class LoginManager
33
public static string GetRedirectUrl(bool checkSettings = true)
34
{
35
string redirectUrl = "";
36
- int redirectAfterLogin = PortalSettings.Current.Registration.RedirectAfterLogin;
37
- if (checkSettings && redirectAfterLogin > 0) //redirect to after login page
+ int redirectAfterRegistration = PortalSettings.Current.Registration.RedirectAfterRegistration;
+ if (checkSettings && redirectAfterRegistration > 0) //redirect to after registration page
38
39
- redirectUrl = ServiceProvider.NavigationManager.NavigateURL(redirectAfterLogin);
+ redirectUrl = ServiceProvider.NavigationManager.NavigateURL(redirectAfterRegistration);
40
}
41
else
42
0 commit comments