Android-Universal-Image-Loader
Android-Universal-Image-Loader copied to clipboard
Failing to load Images with Response Code 201 (HTTP Created)
The cause of the problem is the following code (located in core.downloader.BaseImageLoader)
protected boolean shouldBeProcessed(HttpURLConnection conn) throws IOException {
return conn.getResponseCode() == 200;
}