Last active
August 23, 2018 12:56
-
-
Save jaredsburrows/26e2c2272f7dbea86a00abe4b26503a4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.support.annotation.Nullable; | |
import okhttp3.ResponseBody; | |
import retrofit2.Converter; | |
import retrofit2.Retrofit; | |
import java.io.IOException; | |
import java.lang.annotation.Annotation; | |
import java.lang.reflect.Type; | |
/** | |
* https://github.com/square/retrofit/issues/1554#issuecomment-178633697 | |
* https://github.com/square/retrofit/issues/1554#issuecomment-212941985 | |
*/ | |
public final class NullOnEmptyConverterFactory extends Converter.Factory { | |
private NullOnEmptyConverterFactory() { | |
} | |
public static Converter.Factory create() { | |
return new NullOnEmptyConverterFactory(); | |
} | |
@Override | |
public @Nullable Converter<ResponseBody, ?> responseBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) { | |
final Converter<ResponseBody, ?> delegate = retrofit.nextResponseBodyConverter(this, type, annotations); | |
return new Converter<ResponseBody, Object>() { | |
@Override | |
public Object convert(ResponseBody body) throws IOException { | |
if (body.contentLength() == 0) { | |
return null; | |
} | |
return delegate.convert(body); | |
} | |
}; | |
} | |
} |
Author
jaredsburrows
commented
Aug 25, 2017
•
By returning "{}" this will crash due to CastClassException
NullOnEmptyConverterFactory$responseBodyConverter$1 cannot be cast to retrofit2.Converter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment