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

Commit 8a3e8fe1 authored by Todd Kennedy's avatar Todd Kennedy Committed by android-build-merger
Browse files

Pass url to the AIA supervisor am: 52f179fd

am: c2467b8c

Change-Id: I726b5957ba15913e2e462409e71a562ed18eaf9c
parents 77d25d4b c2467b8c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -544,9 +544,7 @@ class ActivityStarter {
            ephemeralIntent.setPackage(ephemeralPackage);
        } else {
            // Success intent goes back to the installer
            // TODO; do we need any extras for the installer?
            ephemeralIntent = new Intent(launchIntent);
            ephemeralIntent.setData(null);
        }

        // Intent that is eventually launched if the ephemeral package was
@@ -571,7 +569,7 @@ class ActivityStarter {
        intent.putExtra(Intent.EXTRA_EPHEMERAL_FAILURE, new IntentSender(failureIntentTarget));
        intent.putExtra(Intent.EXTRA_EPHEMERAL_SUCCESS, new IntentSender(successIntentTarget));
        // TODO: Remove when the platform has fully implemented ephemeral apps
        intent.setData(origIntent.getData());
        intent.setData(origIntent.getData().buildUpon().clearQuery().build());
        return intent;
    }