mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00
parent
99b49f0b8f
commit
1b2bcf771d
1 changed files with 5 additions and 1 deletions
|
@ -36,9 +36,13 @@ internal static class ConsoleExtensions
|
||||||
Func<ProgressTask, ValueTask> performOperationAsync
|
Func<ProgressTask, ValueTask> performOperationAsync
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
// Description cannot be empty
|
||||||
|
// https://github.com/Tyrrrz/DiscordChatExporter/issues/1133
|
||||||
|
var actualDescription = !string.IsNullOrWhiteSpace(description) ? description : "?";
|
||||||
|
|
||||||
var progressTask = progressContext.AddTask(
|
var progressTask = progressContext.AddTask(
|
||||||
// Don't recognize random square brackets as style tags
|
// Don't recognize random square brackets as style tags
|
||||||
Markup.Escape(description),
|
Markup.Escape(actualDescription),
|
||||||
new ProgressTaskSettings { MaxValue = 1 }
|
new ProgressTaskSettings { MaxValue = 1 }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue