|
@@ -162,9 +162,9 @@ func DistributeQuestion(questionId, adminId, researchGroupFirstId, researchGroup
|
|
|
return
|
|
|
}
|
|
|
contentRune := []rune(item.QuestionContent)
|
|
|
- if len(contentRune) > 25 {
|
|
|
- errMsg = "问题字数不可超过25个字符"
|
|
|
- err = errors.New("问题字数不可超过25个字符")
|
|
|
+ if len(contentRune) > 28 {
|
|
|
+ errMsg = "问题字数不可超过28个字符"
|
|
|
+ err = errors.New("问题字数不可超过28个字符")
|
|
|
return
|
|
|
}
|
|
|
if item.ReplyStatus == 3 {
|