return bool on UpdateInteractive

This commit is contained in:
Pilzinsel64
2024-09-04 10:19:16 +02:00
parent f1c99b0d51
commit a03f7047df
2 changed files with 14 additions and 10 deletions

View File

@@ -38,10 +38,10 @@ public class UpdateClientGui
// F e a t u r e s
public async Task UpdateInteractive(Form parentForm)
public async Task<bool> UpdateInteractive(Form parentForm)
{
this.parentForm = parentForm;
await updateClient.UpdateInteractive();
return await updateClient.UpdateInteractive();
}
private void EndUpdating()