Android-Universal-Image-Loader icon indicating copy to clipboard operation
Android-Universal-Image-Loader copied to clipboard

Failing to load Images with Response Code 201 (HTTP Created)

Open nasirky opened this issue 8 years ago • 0 comments

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;
}

nasirky avatar Dec 18 '16 22:12 nasirky