Skip to content

Commit

Permalink
Android: Schedule UpdateFormState after running pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Nov 3, 2024
1 parent faaa00e commit a2714ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Refresher.AndroidApp/PipelineActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void OnButtonClick(object? sender, EventArgs e)
{
State.Logger.LogInfo(LogType.Pipeline, "Executing Pipeline...");
await this._pipeline.ExecuteAsync(this._cts?.Token ?? default);
this.UpdateFormState();
this._handler.Post(this.UpdateFormState);
}
catch (Exception ex)
{
Expand Down

0 comments on commit a2714ec

Please sign in to comment.