1
0
mirror of https://framagit.org/tom79/fedilab-tube synced 2025-06-05 21:09:11 +02:00
This commit is contained in:
Thomas
2020-11-23 18:37:26 +01:00
parent 7415b752cc
commit 85b89507db

View File

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