mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-21 22:32:41 +01:00
Correct issue with "bindings" conduit attachment
Summary: Ref T13641. These conditions are swapped, and "activeBindings" loads more data than necessary while "bindings" doesn't load enough. Test Plan: Called method with each attachment, got good results instead of an exception. Maniphest Tasks: T13641 Differential Revision: https://secure.phabricator.com/D21657
This commit is contained in:
parent
61272e7ac3
commit
5b8b5f2141
1 changed files with 2 additions and 2 deletions
|
@ -26,9 +26,9 @@ final class AlmanacBindingsSearchEngineAttachment
|
|||
$query->needProperties(true);
|
||||
|
||||
if ($this->getIsActive()) {
|
||||
$query->needBindings(true);
|
||||
} else {
|
||||
$query->needActiveBindings(true);
|
||||
} else {
|
||||
$query->needBindings(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue