Scale gravatars/libravatars if needed

pull/207/head
M66B 3 years ago
parent 3844f178ea
commit f5a2cc2d82

@ -398,7 +398,7 @@ public class ContactInfo {
int status = urlConnection.getResponseCode(); int status = urlConnection.getResponseCode();
if (status == HttpURLConnection.HTTP_OK) { if (status == HttpURLConnection.HTTP_OK) {
// Positive reply // Positive reply
Bitmap bitmap = BitmapFactory.decodeStream(urlConnection.getInputStream()); Bitmap bitmap = ImageHelper.getScaledBitmap(urlConnection.getInputStream(), url.toString(), null, scaleToPixels);
return (bitmap == null ? null : new Favicon(bitmap, "gravatar", false)); return (bitmap == null ? null : new Favicon(bitmap, "gravatar", false));
} else if (status == HttpURLConnection.HTTP_NOT_FOUND) { } else if (status == HttpURLConnection.HTTP_NOT_FOUND) {
// Negative reply // Negative reply
@ -441,7 +441,7 @@ public class ContactInfo {
int status = urlConnection.getResponseCode(); int status = urlConnection.getResponseCode();
if (status == HttpURLConnection.HTTP_OK) { if (status == HttpURLConnection.HTTP_OK) {
// Positive reply // Positive reply
Bitmap bitmap = BitmapFactory.decodeStream(urlConnection.getInputStream()); Bitmap bitmap = ImageHelper.getScaledBitmap(urlConnection.getInputStream(), url.toString(), null, scaleToPixels);
return (bitmap == null ? null : new Favicon(bitmap, "libravatar", false)); return (bitmap == null ? null : new Favicon(bitmap, "libravatar", false));
} else if (status == HttpURLConnection.HTTP_NOT_FOUND) { } else if (status == HttpURLConnection.HTTP_NOT_FOUND) {
// Negative reply // Negative reply

Loading…
Cancel
Save