@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.

x

Summary:

Test Plan:

Reviewers:

CC:

vrana fd3d510d 6039ca6f

+5 -1
+5 -1
src/applications/differential/storage/diff/DifferentialDiff.php
··· 86 86 } 87 87 88 88 public function getBackingVersionControlSystem() { 89 - $repository = $this->loadArcanistProject()->loadRepository(); 89 + $arcanist_project = $this->loadArcanistProject(); 90 + if (!$arcanist_project) { 91 + return null; 92 + } 93 + $repository = $arcanist_project->loadRepository(); 90 94 return $repository->getVersionControlSystem(); 91 95 } 92 96