fix: fix crash when opening some hashtags

This commit is contained in:
LucasGGamerM 2023-10-02 07:45:59 -03:00
parent 3f253c1211
commit f13b6bd4b4
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class SearchFragment extends BaseStatusListFragment<SearchResult>{
args.putParcelable("profileAccount", Parcels.wrap(res.account));
Nav.go(getActivity(), ProfileFragment.class, args);
}
case HASHTAG -> UiUtils.openHashtagTimeline(getActivity(), accountID, res.hashtag.name);
case HASHTAG -> UiUtils.openHashtagTimeline(getActivity(), accountID, res.hashtag);
case STATUS -> {
Status status=res.status.getContentStatus();
Bundle args=new Bundle();