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

Commit e268fda3 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed Security Exception issue when inflating notification

This is a temporary fix until we can resolve why the permissing
isn't granted properly.

Bug: 73640774
Test: receive mms, reply from hun
Change-Id: I77d909762d90c84b95f32c4c20c495ba46b5a176
parent 97661735
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ public class MessagingImageMessage extends ImageView implements MessagingMessage
        Drawable drawable;
        try {
            drawable = LocalImageResolver.resolveImage(message.getDataUri(), getContext());
        } catch (IOException e) {
        } catch (IOException | SecurityException e) {
            e.printStackTrace();
            return false;
        }