rename clientCapabilities

pull/3861/head
crobibero 5 years ago
parent 287baa4965
commit b90e240af6

@ -119,10 +119,10 @@ namespace Jellyfin.Api.Controllers
if (deviceProfile == null)
{
var caps = _deviceManager.GetCapabilities(authInfo.DeviceId);
if (caps != null)
var clientCapabilities = _deviceManager.GetCapabilities(authInfo.DeviceId);
if (clientCapabilities != null)
{
deviceProfile = caps.DeviceProfile;
deviceProfile = clientCapabilities.DeviceProfile;
}
}

Loading…
Cancel
Save