Hide ignore blocked row

This commit is contained in:
世界 2021-02-19 21:47:58 +08:00
parent 01e8c8c64c
commit 2df1f59d7a
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
1 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ public class NekoChatSettingsActivity extends BaseFragment implements Notificati
stickerSize2Row = rowCount++;
chatRow = rowCount++;
ignoreBlockedRow = rowCount++;
ignoreBlockedRow = NekoConfig.ignoreBlocked || NekoXConfig.developerMode ? rowCount++ : -1;
ignoreMutedCountRow = rowCount++;
disableChatActionRow = rowCount++;
@ -608,7 +608,7 @@ public class NekoChatSettingsActivity extends BaseFragment implements Notificati
textCell.setTextAndValueAndCheck(LocaleController.getString("IgnoreBlocked", R.string.IgnoreBlocked), LocaleController.getString("IgnoreBlockedAbout", R.string.IgnoreBlockedAbout), NekoConfig.ignoreBlocked, true, true);
} else if (position == ignoreMutedCountRow) {
textCell.setTextAndCheck(LocaleController.getString("IgnoreMutedCount", R.string.IgnoreMutedCount), NekoConfig.ignoreMutedCount, true);
} else if (position == skipOpenLinkConfirmRow) {
} else if (position == skipOpenLinkConfirmRow) {
textCell.setTextAndCheck(LocaleController.getString("SkipOpenLinkConfirm", R.string.SkipOpenLinkConfirm), NekoConfig.skipOpenLinkConfirm, true);
} else if (position == disableChatActionRow) {
textCell.setTextAndCheck(LocaleController.getString("DisableChatAction", R.string.DisableChatAction), NekoConfig.disableChatAction, true);