You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would maybe suggest using a different approach and always returning a JSON payload with some empty state or returning an HTTP/204 (No Content) status and then intercepting that status rather than an looking for an empty string.
Steps to Reproduce
Service Implementation:
JsonConverter
It returns
Response<BodyType>(response.base, null, error: response.error);
ResponseConverterInterceptor
ignores the null response and tries to use the "" (empty string) response on line 64:Should I use a different approach to this or is this a bug?
The text was updated successfully, but these errors were encountered: