Skip to content

Commit

Permalink
CHANGELOG: Fix Statusbar App Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
DHD2280 committed May 17, 2024
1 parent 99283bc commit fdc4675
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,7 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
Object statusBarIcon = param.args[2];

String pkgName = (String) getObjectField(statusBarIcon, "pkg");
if (pkgName.contains("com.android") || pkgName.contains("systemui")) return;
try {
if (!pkgName.contains("systemui")) {
icon = mContext.getPackageManager().getApplicationIcon(pkgName);
Expand Down

0 comments on commit fdc4675

Please sign in to comment.