@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 an issue with attempting to index comments on packages

Summary: See rPcd14194a329788d5fff6365bcade278fd18f3612 for a similar change. Implement `getApplicationTransactionCommentObject()` to return `null` explicitly.

Test Plan: Ran `bin/search index --type ownerspackage`, got indexing after change.

Reviewers: amckinley

Reviewed By: amckinley

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

+4
+4
src/applications/owners/storage/PhabricatorOwnersPackageTransaction.php
··· 15 15 return 'PhabricatorOwnersPackageTransactionType'; 16 16 } 17 17 18 + public function getApplicationTransactionCommentObject() { 19 + return null; 20 + } 21 + 18 22 }