Commit ac4a2dcc authored by Thomas's avatar Thomas
Browse files

Update release notes

parent aa8e0f13
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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 {
+1 −0
Original line number Diff line number Diff line
@@ -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
 No newline at end of file