aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-12-01 20:54:01 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-12-21 20:29:33 +0530
commit575e5f24e43f9522c925f66fd49fd1e7867cb227 (patch)
tree892b328e125526c4fd8e2b91865d684c46510f3d /app
parentb0afe8adaa4c8043798120f8638fe95153572857 (diff)
GitCommandExecutor: make committer match author (#1226)
* GitCommandExecutor: make committer match author Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Add changelog entry Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> (cherry picked from commit 31a11a1ebb54ec88d13004c6b4669d7501724909) Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/com/zeapo/pwdstore/git/GitCommandExecutor.kt7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/git/GitCommandExecutor.kt b/app/src/main/java/com/zeapo/pwdstore/git/GitCommandExecutor.kt
index ef584cf7..a86e8c54 100644
--- a/app/src/main/java/com/zeapo/pwdstore/git/GitCommandExecutor.kt
+++ b/app/src/main/java/com/zeapo/pwdstore/git/GitCommandExecutor.kt
@@ -53,9 +53,8 @@ class GitCommandExecutor(
withContext(Dispatchers.IO) {
val name = GitSettings.authorName.ifEmpty { "root" }
val email = GitSettings.authorEmail.ifEmpty { "localhost" }
- command
- .setAuthor(PersonIdent(name, email))
- .call()
+ val identity = PersonIdent(name, email)
+ command.setAuthor(identity).setCommitter(identity).call()
}
}
}
@@ -64,7 +63,7 @@ class GitCommandExecutor(
command.call()
}
val rr = result.rebaseResult
- if (rr.status === RebaseResult.Status.STOPPED) {
+ if (rr.status == RebaseResult.Status.STOPPED) {
throw PullException.PullRebaseFailed
}
}