Correctly handle devices without custom names
This commit is contained in:
parent
37a8a82ac5
commit
373155a063
|
@ -532,7 +532,7 @@ namespace Emby.Server.Implementations.Session
|
|||
}
|
||||
|
||||
var deviceOptions = await _deviceManager.GetDeviceOptions(deviceId).ConfigureAwait(false);
|
||||
if (string.IsNullOrEmpty(deviceOptions.CustomName))
|
||||
if (string.IsNullOrEmpty(deviceOptions?.CustomName))
|
||||
{
|
||||
sessionInfo.DeviceName = deviceName;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user