diff --git a/Base/JPL.ConsoleApp.pas b/Base/JPL.ConsoleApp.pas index 9b3b25f..a249a9a 100644 --- a/Base/JPL.ConsoleApp.pas +++ b/Base/JPL.ConsoleApp.pas @@ -386,9 +386,11 @@ procedure TJPConsoleApp.DisplayTaggedText(const TaggedText: string); i: integer; s: string; begin + if Trim(TaggedText) = '' then Exit; + if not FUseColors then begin - Write(TaggedText); // ToDo: Dodać usuwanie znaczników + Write(StripColorTags(TaggedText)); // Done: Dodać usuwanie znaczników Exit; end;