update video images task to find images that are already there

pull/702/head
Luke Pulverenti 11 years ago
parent e263d74476
commit 699b762cd7

@ -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>

Loading…
Cancel
Save