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

Make WorkingCopy build step slightly more durable

Summary: Fixes T9631. Build steps created before I added this option may not have it specified, which could throw later. Make handling a little more robust.

Test Plan: Will ask @yelirekim to report back.

Reviewers: chad

Reviewed By: chad

Subscribers: yelirekim

Maniphest Tasks: T9631

Differential Revision: https://secure.phabricator.com/D14336

+3
+3
src/applications/harbormaster/step/HarbormasterLeaseWorkingCopyBuildStepImplementation.php
··· 135 135 } 136 136 137 137 $also_phids = $build_target->getFieldValue('repositoryPHIDs'); 138 + if (!is_array($also_phids)) { 139 + $also_phids = array(); 140 + } 138 141 139 142 $all_phids = $also_phids; 140 143 $all_phids[] = $repository_phid;