diff --git a/app/src/main/java/app/fedilab/android/mastodon/ui/drawer/StatusAdapter.java b/app/src/main/java/app/fedilab/android/mastodon/ui/drawer/StatusAdapter.java index 236dc0a3..3bcd2120 100644 --- a/app/src/main/java/app/fedilab/android/mastodon/ui/drawer/StatusAdapter.java +++ b/app/src/main/java/app/fedilab/android/mastodon/ui/drawer/StatusAdapter.java @@ -552,7 +552,7 @@ public class StatusAdapter extends RecyclerView.Adapter String loadMediaType = sharedpreferences.getString(context.getString(R.string.SET_LOAD_MEDIA_TYPE), "ALWAYS"); boolean pronounsSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_PRONOUNS_SUPPORT), true); if(pronounsSupport) { - if (statusToDeal.pronouns == null && statusToDeal.account.fields != null && statusToDeal.account.fields.size() > 0) { + if (statusToDeal.pronouns == null && statusToDeal.account != null && statusToDeal.account.fields != null && statusToDeal.account.fields.size() > 0) { for (Field field : statusToDeal.account.fields) { if (PronounsHelper.pronouns.contains(field.name.toLowerCase().trim())) { statusToDeal.pronouns = Helper.parseHtml(field.value); diff --git a/src/fdroid/fastlane/metadata/android/en/changelogs/533.txt b/src/fdroid/fastlane/metadata/android/en/changelogs/533.txt new file mode 100644 index 00000000..c8bc9af5 --- /dev/null +++ b/src/fdroid/fastlane/metadata/android/en/changelogs/533.txt @@ -0,0 +1,19 @@ +Added: +- Highlight bottom hashtags +- Support Trending Links +- Featured tags displayed in profiles +- Add/Remove featured tags from the profile editor + +Changed: +- Add confirmation dialog when long pressing the boost button +- Open messages by tapping on Scheduled Boost +- Improve language picker when filtered with some languages + +Fixed: +- Limits number of fetch for filters +- Pleroma instances cannot select media +- Wrong messages deleted for scheduled (messages and boosts) +- Fix a crash with long threads +- Fix a potential memory issue for not cropped media +- Fix embedded quotes not displayed +- Some crashes \ No newline at end of file