Don't hide filter settings on Iceshrimp.NET

This commit is contained in:
Jacocococo
2024-09-14 21:28:42 +02:00
parent a554059cce
commit e336f15cb0

View File

@@ -64,7 +64,7 @@ public class SettingsMainFragment extends BaseSettingsFragment<Void>{
));
Instance instance=AccountSessionManager.getInstance().getInstanceInfo(account.domain);
if(!instance.isAkkoma() && !instance.isIceshrimp()){ // hide filter settings on Akkoma and Iceshrimp because the servers don't support the feature
if(!instance.isAkkoma() && !instance.isIceshrimpJs()){ // hide filter settings on Akkoma and Iceshrimp-JS because the servers don't support the feature
data.add(3, new ListItem<>(R.string.settings_filters, 0, R.drawable.ic_fluent_filter_24_regular, this::onFiltersClick));
}