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

Commit 59fbea39 authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge "Log an error when loading an icon fails" into ub-launcher3-dorval-polish

parents 69c340a0 18483fb7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -184,9 +184,13 @@ public class LoaderCursor extends CursorWrapper {
                icon = LauncherIcons.createIconBitmap(
                        BitmapFactory.decodeByteArray(data, 0, data.length), mContext);
            } catch (Exception e) {
                Log.e(TAG, "Failed to load icon for info " + info, e);
                return null;
            }
        }
        if (icon == null) {
            Log.e(TAG, "Failed to load icon for info " + info);
        }
        return icon;
    }