diff --git a/src/Ombi.Schedule/Jobs/Ombi/OmbiAutomaticUpdater.cs b/src/Ombi.Schedule/Jobs/Ombi/OmbiAutomaticUpdater.cs index ca53e08b4..b3cf5b293 100644 --- a/src/Ombi.Schedule/Jobs/Ombi/OmbiAutomaticUpdater.cs +++ b/src/Ombi.Schedule/Jobs/Ombi/OmbiAutomaticUpdater.cs @@ -221,11 +221,6 @@ namespace Ombi.Schedule.Jobs.Ombi { using (var client = new WebClient()) { - ctx.WriteProgressBar(); - client.DownloadProgressChanged += (s, e) => - { - ctx.WriteProgressBar(e.ProgressPercentage); - }; await client.DownloadFileTaskAsync(requestUri, filename); } } diff --git a/src/Ombi/ClientApp/app/usermanagement/usermanagement.component.html b/src/Ombi/ClientApp/app/usermanagement/usermanagement.component.html index 8afade603..9090b3585 100644 --- a/src/Ombi/ClientApp/app/usermanagement/usermanagement.component.html +++ b/src/Ombi/ClientApp/app/usermanagement/usermanagement.component.html @@ -88,7 +88,7 @@ Details/Edit - + diff --git a/src/Ombi/Program.cs b/src/Ombi/Program.cs index f5e84e554..f3f9c8b7e 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -77,11 +77,9 @@ namespace Ombi { var result = new StringBuilder(); - result.AppendLine("Hello, and welcome to the console application."); - result.AppendLine("This application takes in a data file and attempts to import that data into our systems."); + result.AppendLine("Hello, welcome to Ombi"); result.AppendLine("Valid options are:"); result.AppendLine(HelpText.AutoBuild(args, null, null)); - result.AppendLine("Press any key to exit"); return result.ToString(); }