log requests even without a user

This commit is contained in:
Luke Pulverenti 2013-05-10 12:58:07 -04:00
parent ea04e957c8
commit 2ea9b7e4eb

View file

@ -122,15 +122,13 @@ namespace MediaBrowser.Api
var auth = GetAuthorization(request);
if (auth != null && auth.ContainsKey("UserId"))
if (auth != null)
{
var userId = auth["UserId"];
User user = null;
if (!string.IsNullOrEmpty(userId))
if (auth.ContainsKey("UserId"))
{
user = UserManager.GetUserById(new Guid(userId));
user = UserManager.GetUserById(new Guid(auth["UserId"]));
}
var deviceId = auth["DeviceId"];