fixes
This commit is contained in:
parent
dfdda7627f
commit
3a14abaf2e
|
@ -582,7 +582,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 {
|
||||
|
|
Loading…
Reference in New Issue