mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Default to array()
when failing to look up repository PHIDs.
Auditors: btrahan
This commit is contained in:
parent
2ef2b76f10
commit
b1d3948d77
1 changed files with 1 additions and 1 deletions
|
@ -1575,7 +1575,7 @@ abstract class ArcanistBaseWorkflow extends Phobject {
|
|||
private function getRepositoryInformation() {
|
||||
if ($this->repositoryInfo === null) {
|
||||
list($info, $reasons) = $this->loadRepositoryInformation();
|
||||
$this->repositoryInfo = $info;
|
||||
$this->repositoryInfo = nonempty($info, array());
|
||||
$this->repositoryReasons = $reasons;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue