Merge pull request #149 from WuJunkai2004/4.0-dev

fix: 在 4.0dev 中修正了小尾巴添加时的逻辑
This commit is contained in:
HuanCheng65 2023-02-01 11:54:36 +08:00 committed by GitHub
commit 739950f7dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -384,9 +384,12 @@ class ReplyActivity : BaseActivity(), View.OnClickListener,
.append(" :") .append(" :")
} }
builder.append(editText.text) builder.append(editText.text)
if (appPreferences.littleTail != null) { if (appPreferences.littleTail != null) {
if (replyInfoBean!!.isSubFloor == false || replyInfoBean!!.replyUser == null) {
builder.append("\n") builder.append("\n")
.append(appPreferences.littleTail) }
builder.append(appPreferences.littleTail)
} }
return builder.toString() return builder.toString()
} }