From 1f18dd61f5fe5dffde7874dd5bed2480e3d6a0bc Mon Sep 17 00:00:00 2001 From: smcpeck Date: Fri, 24 Feb 2017 10:18:21 -0600 Subject: [PATCH] Remove extra delay when filtering out existing movies --- Ombi.Api/TheMovieDbApi.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Ombi.Api/TheMovieDbApi.cs b/Ombi.Api/TheMovieDbApi.cs index 25ddc0a69..89e6835b2 100644 --- a/Ombi.Api/TheMovieDbApi.cs +++ b/Ombi.Api/TheMovieDbApi.cs @@ -141,11 +141,6 @@ namespace Ombi.Api movies.Add(await GetMovie(m.Id)); counter++; } - else - { - //if we didn't add the movie, delay longer since we know we'll be making additional API calls - await Task.Delay(75); - } await Task.Delay(50); } }