Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit faa572c

Browse files
committed
fix new passwords no longer being added
1 parent 72fcf46 commit faa572c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/zeapo/pwdstore/PasswordStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ public void execute() {
550550
Git git = new Git(this.repository);
551551
GitAsyncTask tasks = new GitAsyncTask(activity, false, true, this);
552552
tasks.execute(
553-
git.add().setUpdate(true).addFilepattern("."),
553+
git.add().addFilepattern("."),
554554
git.commit().setMessage(message)
555555
);
556556
}

0 commit comments

Comments
 (0)