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

Increase Conpherence notification panel transaction fetch

Summary: We currently fetch 15 transactions for 5 rooms, which leads to some room subtitles in the notification panel to being blank since nothing was fetched. I don't think this is a great fix, but moves the bar much further. Maybe there is a more accurate fix that isn't 5 SQL queries?

Test Plan: Review notification panel in sandbox, ensure all threads have some additional information.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+1 -1
+1 -1
src/applications/conpherence/controller/ConpherenceNotificationPanelController.php
··· 20 20 ->withPHIDs(array_keys($participant_data)) 21 21 ->needProfileImage(true) 22 22 ->needTransactions(true) 23 - ->setTransactionLimit(3 * 5) 23 + ->setTransactionLimit(50) 24 24 ->needParticipantCache(true) 25 25 ->execute(); 26 26 }