I have a project that has a login call that returns a JWT token which I inject as a header in other calls using a tag to recover the token from the body of the call. It worked until recently when it suddenly stopped.
In the tag editor, it returns this error:

The response of the call is very simple:
{
"token": "eyJhbGciOiJSUzI1NiIsInR..."
}
When trying to filter the string directly from the response window using the filter $.token, it returns an array containing the string instead of a string, as has always happened before.

I have a project that has a login call that returns a JWT token which I inject as a header in other calls using a tag to recover the token from the body of the call. It worked until recently when it suddenly stopped.
In the tag editor, it returns this error:
The response of the call is very simple:
{ "token": "eyJhbGciOiJSUzI1NiIsInR..." }When trying to filter the string directly from the response window using the filter
$.token, it returns an array containing the string instead of a string, as has always happened before.