mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 17:21:53 +08:00
处理表情符号,content解析问题
This commit is contained in:
parent
b38c94847e
commit
b09fc5579c
@ -25,10 +25,10 @@ public class MjUtil {
|
||||
if (CharSequenceUtil.isBlank(content)) {
|
||||
return null;
|
||||
}
|
||||
if (!content.contains("raw**")) {
|
||||
if (!content.contains("<@")) {
|
||||
return mjContent.setPrompt(content);
|
||||
}
|
||||
int rawIndex = content.indexOf("raw**") + 5;
|
||||
int rawIndex = content.indexOf("<@") - 3;
|
||||
String prompt = content.substring(0, rawIndex).trim();
|
||||
String contentTail = content.substring(rawIndex).trim();
|
||||
// 检查是否存在进度条
|
||||
|
Loading…
Reference in New Issue
Block a user