This commit is contained in:
Thomas 2020-11-14 15:22:48 +01:00
parent b8f83a7227
commit 37576c69ce
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd
show_more_content = null;
} else {
if (!PeertubeActivity.this.isFinishing()) {
if (peertube != null && peertube.getDescription() != null && description.getDescription().compareTo(peertube.getDescription()) > 0) {
if (peertube != null && peertube.getDescription() != null && description.getDescription() != null && description.getDescription().compareTo(peertube.getDescription()) > 0) {
binding.peertubeDescriptionMore.setVisibility(View.VISIBLE);
show_more_content = description.getDescription();
} else {