mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
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…
x
Reference in New Issue
Block a user