mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-02 03:34:58 +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