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

Conpherence - fix fatal on list view for 100+ messages

Summary: Fixes T6480. @epriestley is very popular and has over 100 messages, thus triggering this issue. fix the typo because bugs are bad.

Test Plan: set limit to 1, observed fatal, applied patch and fatal went away

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6480

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

+1 -1
+1 -1
src/applications/conpherence/controller/ConpherenceListController.php
··· 114 114 ->setLimit($too_many) 115 115 ->execute(); 116 116 if (count($all_participation) == $too_many) { 117 - $node = end($participation); 117 + $node = end($all_participation); 118 118 unset($all_participation[$node->getConpherencePHID()]); 119 119 $scroll_down_participant = $node; 120 120 }