show tips on web client home page

This commit is contained in:
Luke Pulverenti 2013-07-23 08:29:28 -04:00
parent 7ba0927ea6
commit 4c19b9382f
2 changed files with 0 additions and 4 deletions

View file

@ -296,8 +296,6 @@ namespace MediaBrowser.Api
auth.TryGetValue("Client", out client);
auth.TryGetValue("Version", out version);
version = version ?? "0.0.0.0";
if (!string.IsNullOrEmpty(client) && !string.IsNullOrEmpty(deviceId) && !string.IsNullOrEmpty(device) && !string.IsNullOrEmpty(version))
{
SessionManager.LogConnectionActivity(client, version, deviceId, device, user);

View file

@ -598,8 +598,6 @@ namespace MediaBrowser.Api.UserLibrary
auth.TryGetValue("Client", out client);
auth.TryGetValue("Version", out version);
version = version ?? "0.0.0.0";
return _sessionManager.Sessions.First(i => string.Equals(i.DeviceId, deviceId) &&
string.Equals(i.Client, client) &&
string.Equals(i.ApplicationVersion, version));