Skip to content

Commit f01dfca

Browse files
Escape markup for client assertion failures
1 parent 2bc6f7e commit f01dfca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MSStore.CLI/MicrosoftStoreCLI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ internal static async Task<bool> InitAsync(IAnsiConsole ansiConsole, IConfigurat
139139
{
140140
if (ex is InvalidOperationException)
141141
{
142-
ansiConsole.MarkupLine(ex.Message);
142+
ansiConsole.MarkupLine(ex.Message.EscapeMarkup());
143143
}
144144
logger.LogCritical(ex, "Failed to get client assertion.");
145145
}

0 commit comments

Comments
 (0)