aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Common.Implementations/Security/UsageReporter.cs1
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs15
2 files changed, 10 insertions, 6 deletions
diff --git a/MediaBrowser.Common.Implementations/Security/UsageReporter.cs b/MediaBrowser.Common.Implementations/Security/UsageReporter.cs
index c32acd25b..0e3b0e210 100644
--- a/MediaBrowser.Common.Implementations/Security/UsageReporter.cs
+++ b/MediaBrowser.Common.Implementations/Security/UsageReporter.cs
@@ -50,5 +50,6 @@ namespace MediaBrowser.Common.Implementations.Security
public string AppName { get; set; }
public string AppVersion { get; set; }
public string DeviceVersion { get; set; }
+ public string DeviceId { get; set; }
}
}
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs b/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs
index 5f5d5d901..98b9b2ae9 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs
@@ -45,13 +45,15 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
var session = e.SessionInfo;
if (!string.IsNullOrEmpty(session.Client) &&
- !string.IsNullOrEmpty(session.DeviceName))
+ !string.IsNullOrEmpty(session.DeviceName) &&
+ !string.IsNullOrEmpty(session.DeviceId))
{
var keys = new List<string>
- {
- session.Client,
- session.DeviceName
- };
+ {
+ session.Client,
+ session.DeviceName,
+ session.DeviceId
+ };
if (!string.IsNullOrEmpty(session.DeviceVersion))
{
@@ -88,7 +90,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
{
AppName = session.Client,
AppVersion = session.ApplicationVersion,
- DeviceVersion = session.DeviceVersion
+ DeviceVersion = session.DeviceVersion,
+ DeviceId = session.DeviceId
};
if (string.IsNullOrEmpty(info.DeviceVersion))