update video images task to find images that are already there

This commit is contained in:
Luke Pulverenti 2013-07-21 18:10:59 -04:00
parent e263d74476
commit 699b762cd7

View file

@ -290,17 +290,17 @@ namespace MediaBrowser.Server.Implementations.ScheduledTasks
{
semaphore.Release();
}
// Image is already in the cache
item.PrimaryImagePath = path;
await _libraryManager.UpdateItem(item, ItemUpdateType.ImageUpdate, cancellationToken).ConfigureAwait(false);
}
else
{
semaphore.Release();
}
}
// Image is already in the cache
item.PrimaryImagePath = path;
await _libraryManager.UpdateItem(item, ItemUpdateType.ImageUpdate, cancellationToken).ConfigureAwait(false);
}
/// <summary>