Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
Merged branch dev into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DZunke committed Jan 16, 2017
2 parents aac82a6 + 7064d56 commit 9164f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slack/Client/Actions/UsersList.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function parseResponse(array $response)
'name' => $user['name'],
'deleted' => (bool)$user['deleted'],
'real_name' => $user['profile']['real_name'],
'email' => $user['profile']['email'],
'email' => isset($user['profile']['email']) ? $user['profile']['email'] : null,
'is_bot' => (bool)$user['is_bot'],
'presence' => isset($user['presence']) ? $user['presence'] : null
];
Expand Down

0 comments on commit 9164f8b

Please sign in to comment.