@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 broken method call

Summary: The method is actually named `DivinerAtomRef::newFromDictionary`.

Test Plan: `./bin/diviner generate --publisher DivinerStaticPublisher` worked a bit better.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

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

+1 -1
+1 -1
src/applications/diviner/publisher/DivinerStaticPublisher.php
··· 135 135 136 136 $candidates = $this->atomNameMap[$name]; 137 137 foreach ($candidates as $key => $dict) { 138 - $candidates[$key] = DivinerAtomRef::newFromDict($dict); 138 + $candidates[$key] = DivinerAtomRef::newFromDictionary($dict); 139 139 if ($ref->getType()) { 140 140 if ($candidates[$key]->getType() != $ref->getType()) { 141 141 unset($candidates[$key]);