This commit is contained in:
stom79 2018-12-22 12:21:03 +01:00
parent 4620f10b43
commit fe30985a2f
2 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,8 @@ android {
applicationId "fr.gouv.etalab.mastodon"
minSdkVersion 16
targetSdkVersion 28
versionCode 208
versionName "1.50.0-beta-3"
versionCode 209
versionName "1.50.0"
multiDexEnabled true
}
dexOptions {

View File

@ -518,7 +518,8 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
final ViewHolder holder = (ViewHolder) viewHolder;
final Status status = statuses.get(viewHolder.getAdapterPosition());
if( status == null)
return;
status.setItemViewType(viewHolder.getItemViewType());
boolean displayBookmarkButton = sharedpreferences.getBoolean(Helper.SET_SHOW_BOOKMARK, false);