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

Commit 4c519f8f authored by Ricky Wai's avatar Ricky Wai Committed by Automerger Merge Worker
Browse files

Merge "Only add boolean extra to bundle when the value is false" into tm-dev am: 76f37a5d

parents 1a2b3de8 76f37a5d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -99,8 +99,10 @@ public class ComponentOptions {
    public Bundle toBundle() {
        Bundle b = new Bundle();
        b.putBoolean(KEY_PENDING_INTENT_BACKGROUND_ACTIVITY_ALLOWED, mPendingIntentBalAllowed);
        if (mPendingIntentBalAllowedByPermission) {
            b.putBoolean(KEY_PENDING_INTENT_BACKGROUND_ACTIVITY_ALLOWED_BY_PERMISSION,
                    mPendingIntentBalAllowedByPermission);
        }
        return b;
    }
}