mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
support artists tag value
This commit is contained in:
@@ -158,9 +158,16 @@ namespace MediaBrowser.Server.Implementations.Sync
|
||||
}, _logger);
|
||||
}
|
||||
|
||||
jobItemsResult = _repo.GetJobItems(new SyncJobItemQuery
|
||||
{
|
||||
Statuses = new List<SyncJobItemStatus> { SyncJobItemStatus.Queued, SyncJobItemStatus.Converting },
|
||||
JobId = jobId
|
||||
});
|
||||
|
||||
return new SyncJobCreationResult
|
||||
{
|
||||
Job = GetJob(jobId)
|
||||
Job = GetJob(jobId),
|
||||
JobItems = jobItemsResult.Items.ToList()
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user