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

Likely, fix a warning when rendering modified coverage

Summary: See PHI1819. This structure may have `null` elements.

Test Plan: Will confirm user reproduction case.

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

+4
+4
src/applications/differential/parser/DifferentialChangesetParser.php
··· 1327 1327 $not_covered = 0; 1328 1328 1329 1329 foreach ($this->new as $k => $new) { 1330 + if ($new === null) { 1331 + continue; 1332 + } 1333 + 1330 1334 if (!$new['line']) { 1331 1335 continue; 1332 1336 }