mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03:00
display sync targets
This commit is contained in:
@@ -91,6 +91,13 @@ namespace MediaBrowser.Server.Implementations.Devices
|
||||
devices = devices.Where(i => GetCapabilities(i.Id).SupportsContentUploading == val);
|
||||
}
|
||||
|
||||
if (query.SupportsSync.HasValue)
|
||||
{
|
||||
var val = query.SupportsSync.Value;
|
||||
|
||||
devices = devices.Where(i => GetCapabilities(i.Id).SupportsSync == val);
|
||||
}
|
||||
|
||||
if (query.SupportsUniqueIdentifier.HasValue)
|
||||
{
|
||||
var val = query.SupportsUniqueIdentifier.Value;
|
||||
|
||||
Reference in New Issue
Block a user