mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Fix error introduced with D1195.
Summary: Not my best commit=/ Reviewers: epriestley Test plan: After the change commit parser started working again. Differential Revision: 1206
This commit is contained in:
parent
51b8168253
commit
4ef18d35ac
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ abstract class PhabricatorRepositoryCommitMessageParserWorker
|
|||
$committer = $data->getCommitDetail('authorPHID');
|
||||
if (!$committer) {
|
||||
$committer = $revision->getAuthorPHID();
|
||||
$message = 'Change committed by '.$commit->getAuthorName().'.';
|
||||
$message = 'Change committed by '.$data->getAuthorName().'.';
|
||||
}
|
||||
$editor = new DifferentialCommentEditor(
|
||||
$revision,
|
||||
|
|
Loading…
Reference in a new issue