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

Commit 0cf3265b authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Fixing double system state call in iconCache" into ub-launcher3-calgary-polish

parents 9c41f94b fd476525
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -853,8 +853,7 @@ public class IconCache {
        values.put(IconDB.COLUMN_ICON_LOW_RES, Utilities.flattenBitmap(lowResIcon));

        values.put(IconDB.COLUMN_LABEL, label);
        values.put(IconDB.COLUMN_SYSTEM_STATE,
                mIconProvider.getIconSystemState(mIconProvider.getIconSystemState(packageName)));
        values.put(IconDB.COLUMN_SYSTEM_STATE, mIconProvider.getIconSystemState(packageName));

        return values;
    }