enable sync for channels that allow downloading

This commit is contained in:
Luke Pulverenti
2016-09-07 16:11:34 -04:00
parent d68a826833
commit 13004d2541
3 changed files with 38 additions and 0 deletions

View File

@@ -541,6 +541,11 @@ namespace MediaBrowser.Server.Implementations.Sync
return true;
}
if (item.SourceType == SourceType.Channel)
{
return BaseItem.ChannelManager.SupportsSync(item.ChannelId);
}
return item.LocationType == LocationType.FileSystem || item is Season;
}