Skip to content

Commit

Permalink
Fix missing markup escape (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Dec 1, 2024
1 parent 225fdc1 commit 439b76d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ultra/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,14 @@ await AnsiConsole.Live(statusTable.Table)

options.ProgramLogStdout = (text) =>
{
statusTable.LogText(text);
statusTable.LogText(Markup.Escape(text));
statusTable.UpdateTable();
liveCtx.Refresh();
};

options.ProgramLogStderr = (text) =>
{
statusTable.LogText(text);
statusTable.LogText(Markup.Escape(text));
statusTable.UpdateTable();
liveCtx.Refresh();
};
Expand Down

0 comments on commit 439b76d

Please sign in to comment.