rename clientCapabilities

This commit is contained in:
crobibero 2020-08-18 07:29:39 -06:00
parent 287baa4965
commit b90e240af6
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}