mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 21:55:13 +00:00
Gravatar not found is to be expected
This commit is contained in:
parent
2517cdde03
commit
afbcd2dc69
1 changed files with 3 additions and 2 deletions
|
@ -182,10 +182,11 @@ public class ContactInfo {
|
|||
urlConnection.connect();
|
||||
|
||||
int status = urlConnection.getResponseCode();
|
||||
if (status != HttpURLConnection.HTTP_OK)
|
||||
if (status == HttpURLConnection.HTTP_OK)
|
||||
info.bitmap = BitmapFactory.decodeStream(urlConnection.getInputStream());
|
||||
else if (status != HttpURLConnection.HTTP_NOT_FOUND)
|
||||
throw new IOException("HTTP status=" + status);
|
||||
|
||||
info.bitmap = BitmapFactory.decodeStream(urlConnection.getInputStream());
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
} finally {
|
||||
|
|
Loading…
Reference in a new issue