@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 bug with possible null value

Summary: Fixes T7675. epriestley caught this in code review and I didn't implement it all the way

Test Plan: logicypoo

Reviewers: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7675

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

+1 -1
+1 -1
src/applications/conpherence/view/ConpherenceThreadListView.php
··· 35 35 36 36 $grouped = mgroup($this->threads, 'getIsRoom'); 37 37 $rooms = idx($grouped, true, array()); 38 - $rooms = array_slice($grouped[true], 0, 5); 38 + $rooms = array_slice($rooms, 0, 5); 39 39 40 40 $policies = array(); 41 41 foreach ($rooms as $room) {