diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-19 14:21:03 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-19 14:21:03 -0500 |
| commit | 8610a9b7ef9a976dfdcc68f5171b0c366dc518b9 (patch) | |
| tree | c9d095bb3e29ec595b8863f8976d9858e3a80ccd /MediaBrowser.Server.Implementations/Devices/DeviceManager.cs | |
| parent | 5343630e0ad5df6b2681ccb23698329d47f4a3ce (diff) | |
Update to use SupportsMediaControl
Diffstat (limited to 'MediaBrowser.Server.Implementations/Devices/DeviceManager.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Devices/DeviceManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Devices/DeviceManager.cs b/MediaBrowser.Server.Implementations/Devices/DeviceManager.cs index 3211f88d5..84dd8a97c 100644 --- a/MediaBrowser.Server.Implementations/Devices/DeviceManager.cs +++ b/MediaBrowser.Server.Implementations/Devices/DeviceManager.cs @@ -109,7 +109,7 @@ namespace MediaBrowser.Server.Implementations.Devices devices = devices.Where(i => { var caps = GetCapabilities(i.Id); - var deviceVal = caps.SupportsUniqueIdentifier ?? caps.SupportsPersistentIdentifier; + var deviceVal = caps.SupportsPersistentIdentifier; return deviceVal == val; }); } |
