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

Commit ceb79796 authored by Dmitri Plotnikov's avatar Dmitri Plotnikov
Browse files

[Issue 2087123] Suppressing all exception when trying to load a photo for the in-call UI

parent 6e478d7a
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());