Skip to content

Commit

Permalink
fix(TheNetworg#83): change the final call in the request function fro…
Browse files Browse the repository at this point in the history
…m getResponse to getParsedResponse
  • Loading branch information
Ryan McLaughlin committed Jun 12, 2019
1 parent 8c34761 commit 6b3614b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/Azure.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public function request($method, $ref, &$accessToken, $options = [])
}

$request = $this->getAuthenticatedRequest($method, $url, $accessToken, $options);
$response = $this->getResponse($request);
$response = $this->getParsedResponse($request);

return $response;
}
Expand Down

0 comments on commit 6b3614b

Please sign in to comment.