mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 08:40:03 +02:00
Update release notes
This commit is contained in:
parent
aa8e0f13bc
commit
ac4a2dccfd
2 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue