mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -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())
|
using (var client = new WebClient())
|
||||||
{
|
{
|
||||||
ctx.WriteProgressBar();
|
|
||||||
client.DownloadProgressChanged += (s, e) =>
|
|
||||||
{
|
|
||||||
ctx.WriteProgressBar(e.ProgressPercentage);
|
|
||||||
};
|
|
||||||
await client.DownloadFileTaskAsync(requestUri, filename);
|
await client.DownloadFileTaskAsync(requestUri, filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,7 +88,7 @@
|
||||||
<td>
|
<td>
|
||||||
<a [routerLink]="['/usermanagement/edit/' + u.id]" class="btn btn-sm btn-info-outline">Details/Edit</a>
|
<a [routerLink]="['/usermanagement/edit/' + u.id]" class="btn btn-sm btn-info-outline">Details/Edit</a>
|
||||||
</td>
|
</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>
|
<button *ngIf="!u.hasLoggedIn" (click)="welcomeEmail(u)" [disabled]="!customizationSettings.applicationUrl" class="btn btn-sm btn-info-outline">Send Welcome Email</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -77,11 +77,9 @@ namespace Ombi
|
||||||
{
|
{
|
||||||
var result = new StringBuilder();
|
var result = new StringBuilder();
|
||||||
|
|
||||||
result.AppendLine("Hello, and welcome to the console application.");
|
result.AppendLine("Hello, welcome to Ombi");
|
||||||
result.AppendLine("This application takes in a data file and attempts to import that data into our systems.");
|
|
||||||
result.AppendLine("Valid options are:");
|
result.AppendLine("Valid options are:");
|
||||||
result.AppendLine(HelpText.AutoBuild(args, null, null));
|
result.AppendLine(HelpText.AutoBuild(args, null, null));
|
||||||
result.AppendLine("Press any key to exit");
|
|
||||||
|
|
||||||
return result.ToString();
|
return result.ToString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue