更新 ReplyActivity.kt

This commit is contained in:
Wu Junkai 2023-01-17 20:08:26 +08:00
parent 0c75052380
commit b736132623
1 changed files with 5 additions and 2 deletions

View File

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