mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
Fixed #1574
This commit is contained in:
parent
6d552563eb
commit
fd58e80cea
3 changed files with 2 additions and 9 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
<td>
|
||||
<a [routerLink]="['/usermanagement/edit/' + u.id]" class="btn btn-sm btn-info-outline">Details/Edit</a>
|
||||
</td>
|
||||
<td>
|
||||
<td *ngIf="customizationSettings">
|
||||
<button *ngIf="!u.hasLoggedIn" (click)="welcomeEmail(u)" [disabled]="!customizationSettings.applicationUrl" class="btn btn-sm btn-info-outline">Send Welcome Email</button>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue