1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-23 07:12:41 +01:00

Fix a fatal when viewing methods which no longer exist in the Conduit call log

Summary: Fixes T12252.

Test Plan:
I just faked this, but likely repro is:

  - Call method `x.y`.
  - Remove method `x.y` from the codebase.
  - View log.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12252

Differential Revision: https://secure.phabricator.com/D17342
This commit is contained in:
epriestley 2017-02-13 06:17:55 -08:00
parent 8b2880cfb7
commit b71e089669

View file

@ -162,7 +162,7 @@ final class PhabricatorConduitLogSearchEngine
->addSigil('has-tooltip') ->addSigil('has-tooltip')
->setMetadata( ->setMetadata(
array( array(
'tip' => pht('Unknown ("%s")', $status), 'tip' => pht('Unknown ("%s")', $method_status),
)); ));
break; break;
} }