Merge pull request #5807 from Bond-009/refreshdelay

Remove throttle in refresh code
This commit is contained in:
Bond-009 2021-04-21 13:52:05 +02:00 committed by GitHub
commit da78a96312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1073,10 +1073,10 @@ 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)
@ -1084,7 +1084,6 @@ namespace MediaBrowser.Providers.Manager
await task.ConfigureAwait(false);
}
}
catch (OperationCanceledException)
{
break;