mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Quick ircbot differential
Summary: replace differential.find with differential.query and display in requested order Test Plan: say D444 D222 D443 D442 and ensure they are in the correct order Reviewers: epriestley Reviewed By: epriestley CC: Mnkras, aran Differential Revision: https://secure.phabricator.com/D2656
This commit is contained in:
parent
8883c9494f
commit
934246675e
1 changed files with 6 additions and 2 deletions
|
@ -100,11 +100,15 @@ final class PhabricatorIRCObjectNameHandler extends PhabricatorIRCHandler {
|
|||
|
||||
if ($revision_ids) {
|
||||
$revisions = $this->getConduit()->callMethodSynchronous(
|
||||
'differential.find',
|
||||
'differential.query',
|
||||
array(
|
||||
'query' => 'revision-ids',
|
||||
'guids' => $revision_ids,
|
||||
'ids' => $revision_ids,
|
||||
));
|
||||
$revisions = array_select_keys(
|
||||
ipull($revisions, null, 'id'),
|
||||
$revision_ids
|
||||
);
|
||||
foreach ($revisions as $revision) {
|
||||
$output[$revision['phid']] =
|
||||
'D'.$revision['id'].' '.$revision['name'].' - '.
|
||||
|
|
Loading…
Reference in a new issue