|
@@ -258,7 +258,7 @@ BinaryData Subfile<TEXT>::BuildPieces(const BinaryData& data, const TextFragment
|
|
|
size_t next = text_data.find(DNT, prev);
|
|
|
|
|
|
while (next != std::string::npos) {
|
|
|
- std::u16string piece = (next - prev == 0) ? u" " : text_data.substr(prev, next - prev);
|
|
|
+ std::u16string piece = (next - prev == 0) ? u"" : text_data.substr(prev, next - prev);
|
|
|
text_pieces.push_back(piece);
|
|
|
prev = next + DNT.length();
|
|
|
next = text_data.find(DNT, prev);
|