Check the result code of GroupManagerActivity

This commit is contained in:
Alexander Bakker 2018-12-18 23:18:11 +01:00
parent b28691c274
commit ceb03de240

View file

@ -424,6 +424,10 @@ public class PreferencesFragment extends PreferenceFragmentCompat {
}
private void onGroupManagerResult(int resultCode, Intent data) {
if (resultCode != Activity.RESULT_OK) {
return;
}
HashSet<String> groups = new HashSet<>(data.getStringArrayListExtra("groups"));
for (DatabaseEntry entry : _db.getEntries()) {