add AlbumArtists to item dto's

This commit is contained in:
Luke Pulverenti
2015-03-13 11:54:20 -04:00
parent 4309455c37
commit a92723fde3
15 changed files with 70 additions and 37 deletions

View File

@@ -136,6 +136,14 @@ namespace MediaBrowser.Server.Implementations.Sync
var jobId = Guid.NewGuid().ToString("N");
if (string.IsNullOrWhiteSpace(request.Quality))
{
request.Quality = GetQualityOptions(request.TargetId)
.Where(i => i.IsDefault)
.Select(i => i.Id)
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
}
var job = new SyncJob
{
Id = jobId,