Skip to content

Commit

Permalink
Update USMT.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
krisdb2009 authored Jan 18, 2024
1 parent e661b98 commit 5385fd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SuperGrate/Classes/USMT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static Task<bool> Do(USMTMode Mode, string[] IDs)
}
Logger.UpdateProgress(0);
}
Failed = !await CleaupUSMT();
Failed = !await CleanupUSMT();
if(Canceled || Failed)
{
return false;
Expand Down Expand Up @@ -202,7 +202,7 @@ public static async void Cancel()
/// Cleanup USMT from remote machine.
/// </summary>
/// <returns>A task with bool, true if success.</returns>
public static Task<bool> CleaupUSMT()
public static Task<bool> CleanupUSMT()
{
return Task.Run(async () => {
int tries = 0;
Expand Down

0 comments on commit 5385fd9

Please sign in to comment.