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

Commit 7d56ee82 authored by Kweku Adams's avatar Kweku Adams
Browse files

Return true in onStartJob.

Returning true indicates that there is ongoing work.

Bug: 148754858
Test: None
Change-Id: I31bc4f986803a1462f87779d3f4eb14e10d7f841
parent a8456872
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ public class BlobStoreIdleJobService extends JobService {
            blobStoreManagerInternal.onIdleMaintenance();
            jobFinished(params, false);
        });
        return false;
        return true;
    }

    @Override