mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Fix bug where CC value is ignored on intial parse from commit message
Summary: While I thought this was complicated, there was nothing subtle or tricky here -- I just misnamed a variable. Test Plan: Created a revision with default CCs, got CCs instead of nothing. Reviewers: aran, jungejason, tuomaspelkonen Reviewed By: aran CC: aran Differential Revision: 834
This commit is contained in:
parent
4693ffa82b
commit
735120b842
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ final class DifferentialCCsFieldSpecification
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setValueFromParsedCommitMessage($value) {
|
public function setValueFromParsedCommitMessage($value) {
|
||||||
$this->value = nonempty($value, array());
|
$this->ccs = nonempty($value, array());
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue