Quellcode durchsuchen

fixes #335 - Tasks Stalled

Luke Pulverenti vor 12 Jahren
Ursprung
Commit
150c74ece1

+ 1 - 12
MediaBrowser.Providers/Movies/FanArtMovieUpdatesPrescanTask.cs

@@ -130,18 +130,7 @@ namespace MediaBrowser.Providers.Movies
 
             foreach (var id in list)
             {
-                try
-                {
-                    await UpdateMovie(id, moviesDataPath, cancellationToken).ConfigureAwait(false);
-                }
-                catch (HttpException ex)
-                {
-                    // Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
-                    if (!ex.IsTimedOut)
-                    {
-                        throw;
-                    }
-                }
+                await UpdateMovie(id, moviesDataPath, cancellationToken).ConfigureAwait(false);
 
                 numComplete++;
                 double percent = numComplete;

+ 1 - 12
MediaBrowser.Providers/Music/FanArtUpdatesPrescanTask.cs

@@ -144,18 +144,7 @@ namespace MediaBrowser.Providers.Music
 
             foreach (var id in list)
             {
-                try
-                {
-                    await UpdateArtist(id, artistsDataPath, cancellationToken).ConfigureAwait(false);
-                }
-                catch (HttpException ex)
-                {
-                    // Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
-                    if (!ex.IsTimedOut)
-                    {
-                        throw;
-                    }
-                }
+                await UpdateArtist(id, artistsDataPath, cancellationToken).ConfigureAwait(false);
 
                 numComplete++;
                 double percent = numComplete;

+ 1 - 12
MediaBrowser.Providers/TV/FanArtTvUpdatesPrescanTask.cs

@@ -145,18 +145,7 @@ namespace MediaBrowser.Providers.TV
 
             foreach (var id in list)
             {
-                try
-                {
-                    await UpdateSeries(id, seriesDataPath, cancellationToken).ConfigureAwait(false);
-                }
-                catch (HttpException ex)
-                {
-                    // Already logged at lower levels, but don't fail the whole operation, unless something other than a timeout
-                    if (!ex.IsTimedOut)
-                    {
-                        throw;
-                    }
-                }
+                await UpdateSeries(id, seriesDataPath, cancellationToken).ConfigureAwait(false);
 
                 numComplete++;
                 double percent = numComplete;