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

Use most recent transaction in Conpherence notification menu

Summary: Not sure this ever worked correctly, but now once we have a supported action, skip the rest of the transactions. Currently you'll see a random old post.

Test Plan: Test multiple rooms in various states with new messages, edits, new room titles, etc.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+3
+3
src/applications/conpherence/storage/ConpherenceThread.php
··· 286 286 $message_transaction = null; 287 287 $action_transaction = null; 288 288 foreach ($transactions as $transaction) { 289 + if ($message_transaction || $action_transaction) { 290 + break; 291 + } 289 292 switch ($transaction->getTransactionType()) { 290 293 case PhabricatorTransactions::TYPE_COMMENT: 291 294 $message_transaction = $transaction;