fix(compose-content-type-menu): hopefully fix a crash on this thing being null
Fuck java
This commit is contained in:
@@ -512,7 +512,8 @@ public class ComposeFragment extends MastodonToolbarFragment implements OnBackPr
|
|||||||
}
|
}
|
||||||
|
|
||||||
int typeIndex=contentType.ordinal();
|
int typeIndex=contentType.ordinal();
|
||||||
contentTypePopup.getMenu().findItem(typeIndex).setChecked(true);
|
if (contentTypePopup.getMenu().findItem(typeIndex) != null)
|
||||||
|
contentTypePopup.getMenu().findItem(typeIndex).setChecked(true);
|
||||||
contentTypeBtn.setSelected(typeIndex != ContentType.UNSPECIFIED.ordinal() && typeIndex != ContentType.PLAIN.ordinal());
|
contentTypeBtn.setSelected(typeIndex != ContentType.UNSPECIFIED.ordinal() && typeIndex != ContentType.PLAIN.ordinal());
|
||||||
|
|
||||||
autocompleteViewController=new ComposeAutocompleteViewController(getActivity(), accountID);
|
autocompleteViewController=new ComposeAutocompleteViewController(getActivity(), accountID);
|
||||||
|
|||||||
Reference in New Issue
Block a user