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

Commit 36cec43e authored by Songchun Fan's avatar Songchun Fan
Browse files

[PreVerfiedDomains] use flattened string for get-domain-verification-agent

This way the result String can be directly used as an input using
ComponentName.unflattenFromString() in the tests.

BUG: 307327678
Test: manual with adb

Change-Id: I3642a9fab139211f99edefcd676ae88af2d86852
parent 7ecfda68
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4801,7 +4801,7 @@ class PackageManagerShellCommand extends ShellCommand {
        try {
            final ComponentName domainVerificationAgent = mInterface.getDomainVerificationAgent();
            pw.println(domainVerificationAgent == null
                    ? "No Domain Verifier available!" : domainVerificationAgent.toString());
                    ? "No Domain Verifier available!" : domainVerificationAgent.flattenToString());
        } catch (Exception e) {
            pw.println("Failure [" + e.getMessage() + "]");
            return 1;