change sync job quality to a string

This commit is contained in:
Luke Pulverenti
2015-03-12 00:03:45 -04:00
parent 8f90e54faf
commit cf6c46c6a6
4 changed files with 42 additions and 41 deletions

View File

@@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Sync
/// Gets or sets the quality.
/// </summary>
/// <value>The quality.</value>
public SyncQuality Quality { get; set; }
public string Quality { get; set; }
/// <summary>
/// Gets or sets the category.
/// </summary>
@@ -98,7 +98,6 @@ namespace MediaBrowser.Model.Sync
public SyncJob()
{
RequestedItemIds = new List<string>();
Quality = SyncQuality.High;
}
}
}