@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 a ModularTransactions exception with custom fields that support change details

Summary: We're throwing here when we actually want to return `null` so we make it into custom field handling code. See Conpherence.

Test Plan: Found a failing task and re-executed it with `bin/worker execute --id <id>`; after this change, it didn't fatal.

Reviewers: chad

Reviewed By: chad

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

+1 -1
+1 -1
src/applications/transactions/storage/PhabricatorModularTransactionType.php
··· 68 68 } 69 69 70 70 public function newChangeDetailView() { 71 - throw new PhutilMethodNotImplementedException(); 71 + return null; 72 72 } 73 73 74 74 public function getMailDiffSectionHeader() {