mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
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
This commit is contained in:
parent
7f99f2cde8
commit
0c6e03d5af
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ abstract class PhabricatorModularTransactionType
|
|||
}
|
||||
|
||||
public function newChangeDetailView() {
|
||||
throw new PhutilMethodNotImplementedException();
|
||||
return null;
|
||||
}
|
||||
|
||||
public function getMailDiffSectionHeader() {
|
||||
|
|
Loading…
Reference in a new issue