mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 03:55:01 +01:00
switch to device name
This commit is contained in:
@@ -46,24 +46,17 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
|
||||
|
||||
if (!string.IsNullOrEmpty(session.Client) &&
|
||||
!string.IsNullOrEmpty(session.DeviceName) &&
|
||||
!string.IsNullOrEmpty(session.DeviceId))
|
||||
!string.IsNullOrEmpty(session.DeviceId) &&
|
||||
!string.IsNullOrEmpty(session.ApplicationVersion))
|
||||
{
|
||||
var keys = new List<string>
|
||||
{
|
||||
session.Client,
|
||||
session.DeviceName,
|
||||
session.DeviceId
|
||||
session.DeviceId,
|
||||
session.ApplicationVersion
|
||||
};
|
||||
|
||||
if (!string.IsNullOrEmpty(session.DeviceVersion))
|
||||
{
|
||||
keys.Add(session.DeviceVersion);
|
||||
}
|
||||
else
|
||||
{
|
||||
keys.Add(DefaultDeviceVersion);
|
||||
}
|
||||
|
||||
var key = string.Join("_", keys.ToArray()).GetMD5();
|
||||
|
||||
_apps.GetOrAdd(key, guid => GetNewClientInfo(session));
|
||||
@@ -90,15 +83,10 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
|
||||
{
|
||||
AppName = session.Client,
|
||||
AppVersion = session.ApplicationVersion,
|
||||
DeviceVersion = session.DeviceVersion,
|
||||
DeviceName = session.DeviceName,
|
||||
DeviceId = session.DeviceId
|
||||
};
|
||||
|
||||
if (string.IsNullOrEmpty(info.DeviceVersion))
|
||||
{
|
||||
info.DeviceVersion = DefaultDeviceVersion;
|
||||
}
|
||||
|
||||
// Report usage to remote server, except for web client, since we already have data on that
|
||||
if (!string.Equals(info.AppName, "Dashboard", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user