mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix lookup of commits in Subversion
Summary: Fixes T7122. The way this query works is a little surprising: - If executed as `withRepositoryIDs(...)`, it assumes you are passing one //or more// repository IDs, so it will never resolve ambiguous identifiers (e.g., "123" instead of "rSVN123"). - If executed as `withRepository(...)`, it knows you are passing exactly one repository and will use that to imply context and resolve these identifiers correctly. This isn't very obvious from the API, but I'm not sure how to make it more clear. (Making `withRepositoryIDs()` do the `withRepository(...)` thing if only one ID was passed in would mean its behavior varied if you passed 1 vs 2 repository IDs, which seems worse / morse surprising.) Test Plan: Various subversion UIs no longer fail to look up commits. Reviewers: btrahan Reviewed By: btrahan Subscribers: mormegil, epriestley Maniphest Tasks: T7122 Differential Revision: https://secure.phabricator.com/D11645
This commit is contained in:
parent
8e2f054fe4
commit
3b6100d620
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ abstract class DiffusionRequest {
|
|||
|
||||
$commit = id(new DiffusionCommitQuery())
|
||||
->setViewer($this->getUser())
|
||||
->withRepositoryIDs(array($repository->getID()))
|
||||
->withRepository($repository)
|
||||
->withIdentifiers(array($this->getStableCommit()))
|
||||
->executeOne();
|
||||
if ($commit) {
|
||||
|
|
Loading…
Reference in a new issue