Remove await call

This commit is contained in:
jlewin 2019-04-30 15:53:51 -07:00
parent f3c000a5d3
commit 15c3a56a33

View file

@ -2041,7 +2041,7 @@ You will then need to logout and log back in to the computer for the changes to
ActivePrintTask.Commit();
await Task.Run(() => this.SyncProgressToDB(printingCancellation.Token)).ConfigureAwait(false);
Task.Run(() => this.SyncProgressToDB(printingCancellation.Token));
}
}
}