mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-21 21:10:56 +01:00
Fix two minor bugs with recent patches:
- Use the computed remote URI (which may have an explicit 'ssh://' under Git in some cases). - Use '$id' correctly rather than casting the URI to an int in the message parser.
This commit is contained in:
parent
fd8303aa75
commit
3b65864ee1
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ class PhabricatorRepositoryGitCommitDiscoveryDaemon
|
|||
}
|
||||
|
||||
$remote = $matches[1];
|
||||
$expect = $repository->getDetail('remote-uri');
|
||||
$expect = $repository->getRemoteURI();
|
||||
if ($remote != $expect) {
|
||||
$local_path = $repository->getLocalPath();
|
||||
throw new Exception(
|
||||
|
|
|
@ -47,7 +47,7 @@ class PhabricatorRepositoryDefaultCommitMessageDetailParser
|
|||
$id = DifferentialRevisionIDFieldSpecification::parseRevisionIDFromURI(
|
||||
$match[1]);
|
||||
if ($id) {
|
||||
$details['differential.revisionID'] = (int)$match[1];
|
||||
$details['differential.revisionID'] = $id;
|
||||
$revision = id(new DifferentialRevision())->load($id);
|
||||
if ($revision) {
|
||||
$details['differential.revisionPHID'] = $revision->getPHID();
|
||||
|
|
Loading…
Reference in a new issue