Update release notes

This commit is contained in:
Thomas 2022-11-15 18:21:18 +01:00
parent aa8e0f13bc
commit ac4a2dccfd
2 changed files with 9 additions and 1 deletions

View File

@ -134,7 +134,14 @@ public class FollowedTagActivity extends BaseActivity implements FollowedTagAdap
if (tagList == null) {
tagList = new ArrayList<>();
}
if (newTag != null && followedTagAdapter != null) {
if (followedTagAdapter == null) {
followedTagAdapter = new FollowedTagAdapter(tagList);
followedTagAdapter.actionOnTag = this;
binding.notContent.setVisibility(View.GONE);
binding.recyclerView.setAdapter(followedTagAdapter);
binding.recyclerView.setLayoutManager(new LinearLayoutManager(FollowedTagActivity.this));
}
if (newTag != null) {
tagList.add(0, newTag);
followedTagAdapter.notifyItemInserted(0);
} else {

View File

@ -12,4 +12,5 @@ Fixed:
- Crash with trends
- Issue with themes
- Some content lost when sending messages (mentions)
- Fix freezes in timelines
- Some other fixes