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

Fix a exception being thrown from Diviner

Summary: If no Diviner groups are defined that this line currently throws a fatal exception... make this a little more safe.

Test Plan: Applied to our install, no more exceptions.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

+1 -1
+1 -1
src/applications/diviner/storage/DivinerLiveBook.php
··· 57 57 } 58 58 59 59 public function getGroupName($group) { 60 - $groups = $this->getConfig('groups'); 60 + $groups = $this->getConfig('groups', array()); 61 61 $spec = idx($groups, $group, array()); 62 62 return idx($spec, 'name', $group); 63 63 }