mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 05:20:56 +01:00
Don't try to render RevisionRefs since they haven't been brought over yet.
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
539b245055
commit
9eccb3e23d
1 changed files with 5 additions and 0 deletions
|
@ -102,10 +102,15 @@ class DifferentialCommentMail extends DifferentialMail {
|
|||
$body[] = $this->renderRevisionDetailLink();
|
||||
$revision = $this->getRevision();
|
||||
if ($revision->getStatus() == DifferentialRevisionStatus::COMMITTED) {
|
||||
/*
|
||||
|
||||
TODO
|
||||
|
||||
$rev_ref = $revision->getRevisionRef();
|
||||
if ($rev_ref) {
|
||||
$body[] = " Detail URL: ".$rev_ref->getDetailURL();
|
||||
}
|
||||
*/
|
||||
}
|
||||
$body[] = null;
|
||||
|
||||
|
|
Loading…
Reference in a new issue