small fix
This commit is contained in:
parent
8c958a2563
commit
24c6f79b51
|
@ -586,7 +586,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd
|
||||||
binding.peertubeDescriptionMore.setVisibility(View.GONE);
|
binding.peertubeDescriptionMore.setVisibility(View.GONE);
|
||||||
show_more_content = null;
|
show_more_content = null;
|
||||||
}else{
|
}else{
|
||||||
if( description.getDescription().compareTo(peertube.getDescription()) > 0) {
|
if( peertube != null && description.getDescription().compareTo(peertube.getDescription()) > 0) {
|
||||||
binding.peertubeDescriptionMore.setVisibility(View.VISIBLE);
|
binding.peertubeDescriptionMore.setVisibility(View.VISIBLE);
|
||||||
show_more_content = description.getDescription();
|
show_more_content = description.getDescription();
|
||||||
}else{
|
}else{
|
||||||
|
|
Loading…
Reference in New Issue