1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-23 03:59:25 +01:00

Update durable column to 8 rooms

Summary: We have more space here for last 8.

Test Plan: Reload, see 8.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D16689
This commit is contained in:
Chad Little 2016-10-11 12:19:25 -07:00
parent d79972ecb3
commit eec2d953e0

View file

@ -9,7 +9,7 @@ final class ConpherenceColumnViewController extends
$latest_conpherences = array(); $latest_conpherences = array();
$latest_participant = id(new ConpherenceParticipantQuery()) $latest_participant = id(new ConpherenceParticipantQuery())
->withParticipantPHIDs(array($user->getPHID())) ->withParticipantPHIDs(array($user->getPHID()))
->setLimit(6) ->setLimit(8)
->execute(); ->execute();
if ($latest_participant) { if ($latest_participant) {
$conpherence_phids = mpull($latest_participant, 'getConpherencePHID'); $conpherence_phids = mpull($latest_participant, 'getConpherencePHID');