diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 64bb87a0..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,46 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - -### 3.8.1 (2020-04-17) - - -### Features - -* 增加免责声明 ([e4b4998](https://github.com/HuanCheng65/TiebaLite/commit/e4b4998bc08158aba9b0e62923f2d322ddd3c33b)) - - -### Bug Fixes - -* the good classify does not show ([b811065](https://github.com/HuanCheng65/TiebaLite/commit/b81106521d65e31796bf5a4d7a1ad2a33855a67d)) -* 修复部分导致闪退的问题 ([b02f17d](https://github.com/HuanCheng65/TiebaLite/commit/b02f17d4196866e0a32fd6fb3eba97badd611090)) -* **ExploreFragment.java:** 移除多余代码 ([247aa27](https://github.com/HuanCheng65/TiebaLite/commit/247aa2770f6b88e7b919bdca592940e90e126bbc)) -* **photoviewactivity.kt:** 修复 Java 无法调用 launch 方法 ([fc444e0](https://github.com/HuanCheng65/TiebaLite/commit/fc444e076b5b5f7364e5239f8453a0b5d6d27a6c)) -* **tiebaapi:** 修复删贴提示TBS校验失败 ([6f60ed6](https://github.com/HuanCheng65/TiebaLite/commit/6f60ed65716555097131691bd61e72958471e7ee)) -* **tiebaapi:** 修复回贴无法上传图片 ([47c2990](https://github.com/HuanCheng65/TiebaLite/commit/47c29900e6667cd1bbd691d22a59aa3a18e23b44)) -* 尝试修复楼中楼无法加载更多 ([ad01280](https://github.com/HuanCheng65/TiebaLite/commit/ad01280ff7afcf30bd3a9cb7b32373d20df1c7b1)) - -### 3.8.1 (2020-04-17) - - -### Features - -* 增加免责声明 ([e4b4998](https://github.com/HuanCheng65/TiebaLite/commit/e4b4998bc08158aba9b0e62923f2d322ddd3c33b)) - - -### Bug Fixes - -* the good classify does not show ([b811065](https://github.com/HuanCheng65/TiebaLite/commit/b81106521d65e31796bf5a4d7a1ad2a33855a67d)) -* 修复部分导致闪退的问题 ([b02f17d](https://github.com/HuanCheng65/TiebaLite/commit/b02f17d4196866e0a32fd6fb3eba97badd611090)) -* **ExploreFragment.java:** 移除多余代码 ([247aa27](https://github.com/HuanCheng65/TiebaLite/commit/247aa2770f6b88e7b919bdca592940e90e126bbc)) -* **photoviewactivity.kt:** 修复 Java 无法调用 launch 方法 ([fc444e0](https://github.com/HuanCheng65/TiebaLite/commit/fc444e076b5b5f7364e5239f8453a0b5d6d27a6c)) -* **tiebaapi:** 修复删贴提示TBS校验失败 ([6f60ed6](https://github.com/HuanCheng65/TiebaLite/commit/6f60ed65716555097131691bd61e72958471e7ee)) -* **tiebaapi:** 修复回贴无法上传图片 ([47c2990](https://github.com/HuanCheng65/TiebaLite/commit/47c29900e6667cd1bbd691d22a59aa3a18e23b44)) -* 尝试修复楼中楼无法加载更多 ([ad01280](https://github.com/HuanCheng65/TiebaLite/commit/ad01280ff7afcf30bd3a9cb7b32373d20df1c7b1)) - -### 3.8.1 (2020-04-05) - - -### Bug Fixes - -* the good classify does not show ([b811065](https://github.com/HuanCheng65/TiebaLite/commit/b81106521d65e31796bf5a4d7a1ad2a33855a67d)) diff --git a/app/src/main/java/com/huanchengfly/tieba/post/activities/ReplyActivity.java b/app/src/main/java/com/huanchengfly/tieba/post/activities/ReplyActivity.java index 2ee98f7a..df3d0060 100644 --- a/app/src/main/java/com/huanchengfly/tieba/post/activities/ReplyActivity.java +++ b/app/src/main/java/com/huanchengfly/tieba/post/activities/ReplyActivity.java @@ -295,9 +295,11 @@ public class ReplyActivity extends BaseActivity implements View.OnClickListener .append(replyInfoBean.getReplyUser()) .append(" :"); } - builder.append(editText.getText().toString()) - .append("\n") - .append(getAppPreferences().getLittleTail()); + builder.append(editText.getText()); + if (getAppPreferences().getLittleTail() != null) { + builder.append("\n") + .append(getAppPreferences().getLittleTail()); + } return builder.toString(); }