Small changes

This commit is contained in:
Jamie Rees 2016-03-04 22:24:18 +00:00
parent 2f5db03815
commit 93c5cf6eb6
8 changed files with 16 additions and 25 deletions

View file

@ -59,7 +59,7 @@ namespace PlexRequests.UI.Modules
var username = Request.Form.username;
// Add to the session
Request.Session[SessionKeys.UsernameKey] = username;
Session[SessionKeys.UsernameKey] = username;
return Response.AsJson(new { Result = true });
}