diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-25 14:23:20 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-25 14:23:20 -0400 |
| commit | 491886632dc33e735b0e5f7c88d109eab1eb2a37 (patch) | |
| tree | ca73df7781d8ab942248495b5e70e4d453eb6539 /Emby.Server.Implementations/Dto | |
| parent | c34ff57e1c188e3eda57a626077e804b36665dff (diff) | |
update remote control responses
Diffstat (limited to 'Emby.Server.Implementations/Dto')
| -rw-r--r-- | Emby.Server.Implementations/Dto/DtoService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs index 7c0baf9c25..43a1e6e694 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -499,7 +499,7 @@ namespace Emby.Server.Implementations.Dto if (fields.Contains(ItemFields.BasicSyncInfo) || fields.Contains(ItemFields.SyncInfo)) { - var userCanSync = user != null && user.Policy.EnableSync; + var userCanSync = user != null && user.Policy.EnableContentDownloading; if (userCanSync && _syncManager.SupportsSync(item)) { dto.SupportsSync = true; |
