Skip to content

Commit 9c5769f

Browse files
committed
CLI: fix unicode output
1 parent 28ab25e commit 9c5769f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Source/CLI/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ void OnUploadSessionFinished(UploadSession* session) {
193193
//ConsoleUtils::instance()->SetCursorPos(0, taskCount + 2);
194194

195195
std::cerr<<std::endl<<"Result:"<<std::endl;
196-
std::cout<< generator->generate(uploadedList);
196+
197+
ConsoleUtils::instance()->printUnicode(stdout, generator->generate(uploadedList));
198+
197199
std::cerr<<std::endl;
198200

199201
{

0 commit comments

Comments
 (0)