fix filesize reporting in decrypt operation

This commit is contained in:
Vincent Breitmoser 2015-06-17 04:27:42 +02:00
parent 8e60ccb650
commit 5e77117232
1 changed files with 6 additions and 0 deletions

View File

@ -757,6 +757,12 @@ public class PgpDecryptVerify extends BaseOperation<PgpDecryptVerifyInputParcel>
// TODO: slow annealing to fake a progress?
}
metadata = new OpenPgpMetadata(
originalFilename,
mimeType,
literalData.getModificationTime().getTime(),
alreadyWritten);
if (signature != null) {
updateProgress(R.string.progress_verifying_signature, 90, 100);
log.add(LogType.MSG_DC_CLEAR_SIGNATURE_CHECK, indent);