Skip to content

Commit ea6db2a

Browse files
author
Chad Little
committed
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 parent 0244ec3 commit ea6db2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/applications/conpherence/controller/ConpherenceNotificationPanelController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function handleRequest(AphrontRequest $request) {
2020
->withPHIDs(array_keys($participant_data))
2121
->needProfileImage(true)
2222
->needTransactions(true)
23-
->setTransactionLimit(3 * 5)
23+
->setTransactionLimit(50)
2424
->needParticipantCache(true)
2525
->execute();
2626
}

0 commit comments

Comments
 (0)