mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
remove post build
This commit is contained in:
parent
93c5cf6eb6
commit
c49e9a386b
3 changed files with 5 additions and 8 deletions
|
@ -56,10 +56,10 @@ namespace PlexRequests.UI.Modules
|
|||
|
||||
private Response LoginUser()
|
||||
{
|
||||
var username = Request.Form.username;
|
||||
var username = Request.Form.username.Value;
|
||||
|
||||
// Add to the session
|
||||
Session[SessionKeys.UsernameKey] = username;
|
||||
Session[SessionKeys.UsernameKey] = (string)username;
|
||||
|
||||
return Response.AsJson(new { Result = true });
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue