mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Conpherence - use new getDisplayTitle for search results
Summary: Fixes T8066. These search results were using getDisplayData but only need a title. Use more granular API introduced in rPf311f3f910e31b72345e37bf2e5bea0f278fd111. Test Plan: ran a conpherence query for messages and no more fatal Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8066 Differential Revision: https://secure.phabricator.com/D12719
This commit is contained in:
parent
a802371974
commit
cebf459865
1 changed files with 1 additions and 2 deletions
|
@ -174,8 +174,7 @@ final class ConpherenceThreadSearchEngine
|
||||||
$list->setUser($viewer);
|
$list->setUser($viewer);
|
||||||
foreach ($conpherences as $conpherence) {
|
foreach ($conpherences as $conpherence) {
|
||||||
$created = phabricator_date($conpherence->getDateCreated(), $viewer);
|
$created = phabricator_date($conpherence->getDateCreated(), $viewer);
|
||||||
$data = $conpherence->getDisplayData($viewer);
|
$title = $conpherence->getDisplayTitle($viewer);
|
||||||
$title = $data['title'];
|
|
||||||
|
|
||||||
if ($conpherence->getIsRoom()) {
|
if ($conpherence->getIsRoom()) {
|
||||||
$icon_name = $conpherence->getPolicyIconName($policy_objects);
|
$icon_name = $conpherence->getPolicyIconName($policy_objects);
|
||||||
|
|
Loading…
Reference in a new issue