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

Commit d70a3cf2 authored by Michael Groover's avatar Michael Groover Committed by Gerrit Code Review
Browse files

Merge "Add required flag to registerReceiver call in MetricsLogger"

parents 4212da62 776776c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ public class MetricsLogger {
        mContext = context;
        IntentFilter filter = new IntentFilter();
        filter.addAction(BLUETOOTH_COUNTER_METRICS_ACTION);
        mContext.registerReceiver(mDrainReceiver, filter);
        mContext.registerReceiver(mDrainReceiver, filter, Context.RECEIVER_NOT_EXPORTED);
        scheduleDrains();
        return true;
    }