Closed caraffa closed 6 years ago
Hi. Token validation should succeed if UUID is missing in the decoded token but JWT_AUTH_TOKEN_TRACKING is undefined or false. Should change...
if ( ! isset($token->data->user->uuid)) {
in class-jwt-auth-public.php to...
if ( defined('JWT_AUTH_TOKEN_TRACKING') && JWT_AUTH_TOKEN_TRACKING === true && ! isset($token->data->user->uuid)) {
Thank for the useful job!
Sorry, I was working with an old version. I've cloned your development branch and now I see that UUID features have been removed.
Hi. Token validation should succeed if UUID is missing in the decoded token but JWT_AUTH_TOKEN_TRACKING is undefined or false. Should change...
if ( ! isset($token->data->user->uuid)) {
in class-jwt-auth-public.php to...
if ( defined('JWT_AUTH_TOKEN_TRACKING') && JWT_AUTH_TOKEN_TRACKING === true && ! isset($token->data->user->uuid)) {
Thank for the useful job!