Fix dialog title on blocking community page

This commit is contained in:
Balazs Toldi 2023-08-12 20:44:24 +02:00
parent dc4dc17b6c
commit 23d41846d0
No known key found for this signature in database
GPG Key ID: 6C7D440036F99D58

View File

@ -1187,7 +1187,7 @@ public class ViewSubredditDetailActivity extends BaseActivity implements SortTyp
return true;
}
new MaterialAlertDialogBuilder(this, R.style.MaterialAlertDialogTheme)
.setTitle(R.string.block_user)
.setTitle(R.string.block_community)
.setMessage(R.string.are_you_sure)
.setPositiveButton(R.string.yes, (dialogInterface, i)
-> BlockCommunity.INSTANCE.blockCommunity(mRetrofit.getRetrofit(), communityId, mAccessToken, new BlockCommunity.BlockCommunityListener() {