@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 -1
+1 -1
src/applications/differential/query/DifferentialRepositoryLookup.php
··· 42 42 if ($diff->getRepositoryUUID()) { 43 43 $repositories = id(new PhabricatorRepositoryQuery()) 44 44 ->setViewer($viewer) 45 - ->withUUIDs($diff->getRepositoryUUID()) 45 + ->withUUIDs(array($diff->getRepositoryUUID())) 46 46 ->execute(); 47 47 if ($repositories) { 48 48 return head($repositories);