Update password list after potential modifications

This commit is contained in:
Johannes Baiter 2014-10-30 18:48:15 +01:00
parent 2c97c8a1e1
commit 88df56ea29

View file

@ -446,10 +446,14 @@ public class PasswordStore extends ActionBarActivity {
git.add().addFilepattern("."),
git.commit().setMessage("[ANDROID PwdStore] Add " + data.getExtras().getString("NAME") + " from store.")
);
updateListAdapter();
break;
case GitHandler.REQUEST_INIT:
initRepository(getCurrentFocus());
break;
case GitHandler.REQUEST_PULL:
updateListAdapter();
break;
}
}