Merge pull request #5807 from Bond-009/refreshdelay

Remove throttle in refresh code
pull/5885/head
Bond-009 3 years ago committed by GitHub
commit da78a96312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1073,17 +1073,16 @@ namespace MediaBrowser.Providers.Manager
try
{
var item = libraryManager.GetItemById(refreshItem.Item1);
if (item != null)
if (item == null)
{
// Try to throttle this a little bit.
await Task.Delay(100, cancellationToken).ConfigureAwait(false);
continue;
}
var task = item is MusicArtist artist
? RefreshArtist(artist, refreshItem.Item2, cancellationToken)
: RefreshItem(item, refreshItem.Item2, cancellationToken);
var task = item is MusicArtist artist
? RefreshArtist(artist, refreshItem.Item2, cancellationToken)
: RefreshItem(item, refreshItem.Item2, cancellationToken);
await task.ConfigureAwait(false);
}
await task.ConfigureAwait(false);
}
catch (OperationCanceledException)
{

Loading…
Cancel
Save