aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Devices
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-12-11 01:47:54 -0500
committerGitHub <noreply@github.com>2016-12-11 01:47:54 -0500
commit446b2e29d086a44548b585ea9c66d0ab4c1675eb (patch)
tree4a594ff21204a6cd4df05d3550f869d47eaa8a77 /Emby.Server.Implementations/Devices
parent56ba0c5b5d0ecc6b3dc695af8efeb12465ac44d3 (diff)
parenta8d9a3440d0143aa7cf564f21aff2eadc4b88e6a (diff)
Merge pull request #2336 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/Devices')
-rw-r--r--Emby.Server.Implementations/Devices/DeviceManager.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Emby.Server.Implementations/Devices/DeviceManager.cs b/Emby.Server.Implementations/Devices/DeviceManager.cs
index cdf636e22..88c0ea203 100644
--- a/Emby.Server.Implementations/Devices/DeviceManager.cs
+++ b/Emby.Server.Implementations/Devices/DeviceManager.cs
@@ -101,13 +101,6 @@ namespace Emby.Server.Implementations.Devices
{
IEnumerable<DeviceInfo> devices = _repo.GetDevices().OrderByDescending(i => i.DateLastModified);
- if (query.SupportsContentUploading.HasValue)
- {
- var val = query.SupportsContentUploading.Value;
-
- devices = devices.Where(i => GetCapabilities(i.Id).SupportsContentUploading == val);
- }
-
if (query.SupportsSync.HasValue)
{
var val = query.SupportsSync.Value;