Skip to content
Snippets Groups Projects
Commit 0144a411 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed bug -- erroneous parameter.

parent 3754c754
No related merge requests found
...@@ -716,7 +716,7 @@ class Backend implements BackendInterface ...@@ -716,7 +716,7 @@ class Backend implements BackendInterface
try { try {
$authenticationToken = $this->getAuthenticationToken(true); $authenticationToken = $this->getAuthenticationToken(true);
$response = $this->client $response = $this->client
->info($searchModel, $authenticationToken, $sessionToken); ->info($authenticationToken, $sessionToken);
} catch(Exception $e) { } catch(Exception $e) {
throw new BackendException( throw new BackendException(
$e->getMessage(), $e->getMessage(),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment