Fix a crash that occurred when trying to load the group list too early

This commit is contained in:
Alexander Bakker 2018-12-12 16:20:35 +01:00
parent 4967a572d4
commit 324df53df5

View file

@ -379,7 +379,9 @@ public class MainActivity extends AegisActivity implements EntryListView.Listene
_menu = menu;
getMenuInflater().inflate(R.menu.menu_main, menu);
updateLockIcon();
updateGroupFilterMenu();
if (_loaded) {
updateGroupFilterMenu();
}
return true;
}