aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-15 00:17:35 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-15 00:17:35 -0400
commit2485b5c22df66f81bc58a4b18c90da6b38c835f9 (patch)
tree28f2e1b667b40a7e6069cf8a3ed94aeac365aedb /MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
parent5812a989c2c5e55930eb39c18229cbe7d0452a6d (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs21
1 files changed, 11 insertions, 10 deletions
diff --git a/MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs b/MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
index e4361ed1a..ff43816b0 100644
--- a/MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
+++ b/MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
@@ -80,31 +80,32 @@ namespace MediaBrowser.Server.Implementations.Sync
{
new SyncQualityOption
{
- Name = SyncQuality.Original.ToString(),
- Id = SyncQuality.Original.ToString()
+ Name = "Original",
+ Id = "original",
+ Description = "Syncs original files as-is, regardless of whether the device is capable of playing them or not."
},
new SyncQualityOption
{
- Name = SyncQuality.High.ToString(),
- Id = SyncQuality.High.ToString(),
+ Name = "High",
+ Id = "high",
IsDefault = true
},
new SyncQualityOption
{
- Name = SyncQuality.Medium.ToString(),
- Id = SyncQuality.Medium.ToString()
+ Name = "Medium",
+ Id = "medium"
},
new SyncQualityOption
{
- Name = SyncQuality.Low.ToString(),
- Id = SyncQuality.Low.ToString()
+ Name = "Low",
+ Id = "low"
}
};
}
- public IEnumerable<SyncQualityOption> GetProfileOptions(SyncTarget target)
+ public IEnumerable<SyncProfileOption> GetProfileOptions(SyncTarget target)
{
- return new List<SyncQualityOption>();
+ return new List<SyncProfileOption>();
}
}
}