Forráskód Böngészése

rename clientCapabilities

crobibero 4 éve
szülő
commit
b90e240af6
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      Jellyfin.Api/Controllers/UniversalAudioController.cs

+ 3 - 3
Jellyfin.Api/Controllers/UniversalAudioController.cs

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