Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 622da682 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 23765 into eclair

* changes:
  [Issue 2087123] Suppressing all exception when trying to load a photo for the in-call UI
parents 5f7cee89 ceb79796
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -183,8 +183,14 @@ public class ContactsAsyncHelper extends Handler {

            switch (msg.arg1) {
                case EVENT_LOAD_IMAGE:
                    InputStream inputStream = Contacts.openContactPhotoInputStream(
                    InputStream inputStream = null;
                    try {
                        inputStream = Contacts.openContactPhotoInputStream(
                                args.context.getContentResolver(), args.uri);
                    } catch (Exception e) {
                        Log.e(LOG_TAG, "Error opening photo input stream", e);
                    }

                    if (inputStream != null) {
                        args.result = Drawable.createFromStream(inputStream, args.uri.toString());