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

Commit 9f1656d0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Streaming installation: allow non-v4-signed files (e.g. .dm)" into...

Merge "Streaming installation: allow non-v4-signed files (e.g. .dm)" into rvc-dev am: d060004e am: 20b6525a

Change-Id: I0703c8b53a6a7444baad22d0d6ea894f8f74a2f9
parents 164aadf4 20b6525a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3172,7 +3172,7 @@ class PackageManagerShellCommand extends ShellCommand {
            metadata = (streamingVersion == 0) ? Metadata.forDataOnlyStreaming(fileId)
                    : Metadata.forStreaming(fileId);
            try {
                if (V4Signature.readFrom(signature) == null) {
                if ((signature.length > 0) && (V4Signature.readFrom(signature) == null)) {
                    getErrPrintWriter().println("V4 signature is invalid in: " + arg);
                    return 1;
                }