Fix playlist descriptions and pirate bug

This commit is contained in:
Slendy 2022-09-27 21:52:56 -05:00
parent d192060ef4
commit f46bd4fc87
No known key found for this signature in database
GPG key ID: 7288D68361B91428
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ public class PirateSignupPage : BaseLayout
public IActionResult OnGet()
{
User? user = this.Database.UserFromWebRequest(this.Request);
if (user == null) return this.RedirectToPage("/login");
if (user == null) return this.Redirect("/login");
return this.Page();
}