mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Minor, actually update commit author field when it is parsed by the worker.
This commit is contained in:
parent
b2c59bafd1
commit
d7bb686a47
1 changed files with 6 additions and 0 deletions
|
@ -47,6 +47,12 @@ abstract class PhabricatorRepositoryCommitMessageParserWorker
|
|||
$parser_obj->parseCommitDetails();
|
||||
}
|
||||
|
||||
$author_phid = $data->getCommitDetail('authorPHID');
|
||||
if ($author_phid) {
|
||||
$commit->setAuthorPHID($author_phid);
|
||||
$commit->save();
|
||||
}
|
||||
|
||||
$data->save();
|
||||
|
||||
$conn_w = id(new DifferentialRevision())->establishConnection('w');
|
||||
|
|
Loading…
Reference in a new issue