active-directory-b2c-wordpress-plugin-openidconnect
active-directory-b2c-wordpress-plugin-openidconnect copied to clipboard
Fix error with $decoded_response being an uncountable type
$decoded_response = json_decode($response['body'], true);
Can return NULL. The following line tries to count a type (NULL) which isn't a countable type which in turn produces a warning message.
The proposed fix solves this.