diff --git a/NzbDrone.Common/ConsoleProvider.cs b/NzbDrone.Common/ConsoleProvider.cs index b942e612c..3a36b83e1 100644 --- a/NzbDrone.Common/ConsoleProvider.cs +++ b/NzbDrone.Common/ConsoleProvider.cs @@ -1,5 +1,6 @@ using System; using System.Diagnostics; +using System.Threading; namespace NzbDrone.Common { @@ -10,6 +11,7 @@ namespace NzbDrone.Common while (true) { Console.ReadLine(); + Thread.Sleep(250); } }