mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Fix two issues with callsign-free repositories
Summary: Ref T4245. These callsites don't quite do the right thing if a repository has no callsign. See also <https://github.com/phacility/phabricator/pull/822>. Test Plan: Made a comment on a commit in a repository with no callsign. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D15344
This commit is contained in:
parent
944539a786
commit
5b9d8aeae7
2 changed files with 2 additions and 4 deletions
|
@ -82,9 +82,7 @@ final class PhabricatorAuditAddCommentController
|
|||
$draft->delete();
|
||||
}
|
||||
|
||||
$monogram = $commit->getRepository()->getMonogram();
|
||||
$identifier = $commit->getCommitIdentifier();
|
||||
$uri = '/'.$monogram.$identifier;
|
||||
$uri = $commit->getURI();
|
||||
|
||||
return id(new AphrontRedirectResponse())->setURI($uri);
|
||||
}
|
||||
|
|
|
@ -103,7 +103,7 @@ final class DiffusionExternalController extends DiffusionController {
|
|||
array(
|
||||
'href' => $href,
|
||||
),
|
||||
$commit->getMonogram()),
|
||||
$commit->getURI()),
|
||||
$commit->loadCommitData()->getSummary(),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue