Correctly handle devices without custom names

pull/6201/head
Patrick Barron 3 years ago
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…
Cancel
Save