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

pull/120/head
Alexander Bakker 7 years ago
parent 4967a572d4
commit 324df53df5

@ -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;
}

Loading…
Cancel
Save