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

Commit 944ce5c9 authored by Kweku Adams's avatar Kweku Adams Committed by Automerger Merge Worker
Browse files

Merge "Add namespace to battery name." into udc-dev am: 0b05e0b1

parents a29cdde0 0b05e0b1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -590,9 +590,10 @@ public final class JobStatus {
            this.sourceTag = tag;
        }

        final String bnNamespace = namespace == null ? "" :  "@" + namespace + "@";
        this.batteryName = this.sourceTag != null
                ? this.sourceTag + ":" + job.getService().getPackageName()
                : job.getService().flattenToShortString();
                ? bnNamespace + this.sourceTag + ":" + job.getService().getPackageName()
                : bnNamespace + job.getService().flattenToShortString();
        this.tag = "*job*/" + this.batteryName + "#" + job.getId();

        this.earliestRunTimeElapsedMillis = earliestRunTimeElapsedMillis;