fix: fixes unfollow dialog missing title

This commit is contained in:
LucasGGamerM
2023-12-06 16:30:47 -03:00
parent b42862dd9b
commit a27ef27f8d

View File

@@ -854,7 +854,7 @@ public class UiUtils {
.exec(accountID); .exec(accountID);
}; };
if(relationship.following && GlobalUserPreferences.confirmUnfollow){ if(relationship.following && GlobalUserPreferences.confirmUnfollow){
showConfirmationAlert(activity, null, activity.getString(R.string.unfollow_confirmation, account.getDisplayUsername()), activity.getString(R.string.unfollow), R.drawable.ic_fluent_person_delete_24_regular, action); showConfirmationAlert(activity, activity.getString(R.string.unfollow), activity.getString(R.string.unfollow_confirmation, account.getDisplayUsername()), activity.getString(R.string.unfollow), R.drawable.ic_fluent_person_delete_24_regular, action);
}else{ }else{
action.run(); action.run();
} }