mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
Continue not fataling on legacy Maniphest queries
Summary: Ref T3817. See that task for discussion. Auditors: btrahan
This commit is contained in:
parent
004edbaf7c
commit
0ce3121170
1 changed files with 5 additions and 2 deletions
|
@ -60,8 +60,11 @@ final class ManiphestTaskListView extends ManiphestView {
|
|||
$item->setHref('/T'.$task->getID());
|
||||
|
||||
if ($task->getOwnerPHID()) {
|
||||
$owner = $handles[$task->getOwnerPHID()];
|
||||
$item->addByline(pht('Assigned: %s', $owner->renderLink()));
|
||||
$owner = idx($handles, $task->getOwnerPHID());
|
||||
// TODO: This should be guaranteed, see T3817.
|
||||
if ($owner) {
|
||||
$item->addByline(pht('Assigned: %s', $owner->renderLink()));
|
||||
}
|
||||
}
|
||||
|
||||
$status = $task->getStatus();
|
||||
|
|
Loading…
Reference in a new issue