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

Commit bd1b494b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix an issue that statsd failed to update the uid mapping when ......

Merge "Fix an issue that statsd failed to update the uid mapping when ... version name of the app is null"
parents f822d418 535c48fa
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -583,7 +583,11 @@ public class StatsCompanionService extends IStatsCompanionService.Stub {
                        } catch (IllegalArgumentException e) {
                            installer = "";
                        }
                        sStatsd.informOnePackage(app, uid, pi.getLongVersionCode(), pi.versionName,
                        sStatsd.informOnePackage(
                                app,
                                uid,
                                pi.getLongVersionCode(),
                                pi.versionName == null ? "" : pi.versionName,
                                installer == null ? "" : installer);
                    }
                } catch (Exception e) {