fix previously broken default browsing for special categories
This commit is contained in:
parent
4f98413c39
commit
999966d081
@ -517,7 +517,11 @@ public class FeedCategoriesFragment extends Fragment implements OnItemClickListe
|
||||
if (list != null) {
|
||||
FeedCategory cat = (FeedCategory)list.getItemAtPosition(position);
|
||||
|
||||
m_activity.onCatSelected(cat);
|
||||
if (cat.id < 0) {
|
||||
m_activity.onCatSelected(cat, false);
|
||||
} else {
|
||||
m_activity.onCatSelected(cat);
|
||||
}
|
||||
|
||||
m_selectedCat = cat;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user