finalization

This commit is contained in:
Austin Huang 2020-08-18 16:55:42 -04:00
parent 072cd63776
commit 376f3e5d5a
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
2 changed files with 4 additions and 1 deletions

View File

@ -356,7 +356,7 @@ public class DirectMessageThreadFragment extends Fragment {
}
else {
LinearLayout dim = (LinearLayout) binding.messageList.findViewWithTag(directItemModel);
if (dim.findViewById(R.id.liked) != null) dim.findViewById(R.id.liked).setVisibility(deleted ? View.GONE : View.VISIBLE);
if (dim.findViewById(R.id.liked) != null) dim.findViewById(R.id.liked).setVisibility(delete ? View.GONE : View.VISIBLE);
directItemModel.setLiked();
}
hasSentSomething = true;

View File

@ -0,0 +1,3 @@
* You can now upload images in DM
* You can now like messages
* Various bug fixes