Skip to content

Commit 6a74ad7

Browse files
author
epriestley
committed
Fix an issue with UUID query construction
Summary: This is SVN-only and I missed it in my test plan. Test Plan: `arc diff` in SVN repository with no `.arcconfig`. Auditors: btrahan
1 parent 8900702 commit 6a74ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/applications/differential/query/DifferentialRepositoryLookup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function lookupRepository() {
4242
if ($diff->getRepositoryUUID()) {
4343
$repositories = id(new PhabricatorRepositoryQuery())
4444
->setViewer($viewer)
45-
->withUUIDs($diff->getRepositoryUUID())
45+
->withUUIDs(array($diff->getRepositoryUUID()))
4646
->execute();
4747
if ($repositories) {
4848
return head($repositories);

0 commit comments

Comments
 (0)