Austin Huang
4 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with
3 additions and
1 deletions
-
app/src/main/java/awais/instagrabber/adapters/PostsAdapter.java
|
|
@ -89,8 +89,10 @@ public final class PostsAdapter extends RecyclerView.Adapter<PostViewHolder> { |
|
|
|
final HttpURLConnection conn = (HttpURLConnection) new URL(postModel.getDisplayUrl()).openConnection(); |
|
|
|
conn.setUseCaches(false); |
|
|
|
conn.connect(); |
|
|
|
if (conn.getResponseCode() != HttpURLConnection.HTTP_GONE) |
|
|
|
if (conn.getResponseCode() != HttpURLConnection.HTTP_GONE) { |
|
|
|
glideRequestManager.load(postModel.getDisplayUrl()).into(holder.postImage); |
|
|
|
} |
|
|
|
else return true; |
|
|
|
} |
|
|
|
catch (Exception urle) { |
|
|
|
if (logCollector != null) |
|
|
|