build: 1.4.0-beta5

This commit is contained in:
手瓜一十雪
2024-05-23 15:16:35 +08:00
parent c08c12262a
commit 39001d7ac5
2 changed files with 7 additions and 8 deletions

View File

@@ -120,10 +120,15 @@ export class OB11Constructor {
}
else if (element.textElement) {
message_data['type'] = 'text';
const text = element.textElement.content;
let text = element.textElement.content;
if (!text.trim()) {
continue;
}
// 兼容 9.7.x 换行符
if (text.indexOf('\n') === -1 && text.indexOf('\r\n') === -1) {
text = text.replace(/\r/g, '\n');
}
message_data['data']['text'] = text;
}
else if (element.replyElement) {