diff --git a/wiliwili/source/view/video_comment.cpp b/wiliwili/source/view/video_comment.cpp index 82f6340f9..c33f5e963 100644 --- a/wiliwili/source/view/video_comment.cpp +++ b/wiliwili/source/view/video_comment.cpp @@ -176,7 +176,7 @@ void VideoComment::setData(bilibili::VideoCommentResult data) { if (start < nextMatch) { // 纯文本 auto item = std::make_shared( - msg.substr(start, nextMatch - start), textColor); + msg.substr(start, nextMatch - start) + "\r", textColor); d.emplace_back(item); } if (matchElement == nullptr) break;