Skip to content

Commit

Permalink
Fix case for index
Browse files Browse the repository at this point in the history
The $response['Account'] array has 'Action' and a 'RedirectUrl' (with a capital 'R') as keys.
  • Loading branch information
tap52384 committed Jan 26, 2017
1 parent f0c41e8 commit 778f853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Autodiscover.php
Expand Up @@ -646,7 +646,7 @@ protected function parseAutodiscoverResponse()
return false;
case 'redirectAddr':
$this->redirect = array(
'redirectAddr' => $response['Account']['redirectAddr']
'redirectAddr' => $response['Account']['RedirectAddr']
);
return false;
case 'settings':
Expand Down

0 comments on commit 778f853

Please sign in to comment.