From fd58e80ceade6111fe0887d1c9f8caec06e7b055 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Sun, 15 Oct 2017 20:06:17 +0100 Subject: [PATCH] Fixed #1574 --- src/Ombi.Schedule/Jobs/Ombi/OmbiAutomaticUpdater.cs | 5 ----- .../app/usermanagement/usermanagement.component.html | 2 +- src/Ombi/Program.cs | 4 +--- 3 files changed, 2 insertions(+), 9 deletions(-) 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(); }