Fix verifying one-pass signatures in the compat build (#968)

This was broken in 735d6d0.

See babel/babel#10431.
This commit is contained in:
Daniel Huigens 2019-09-12 00:42:35 +02:00 committed by GitHub
parent a14b09c89b
commit aa8d37a82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ OnePassSignature.prototype.hash = Signature.prototype.hash;
OnePassSignature.prototype.toHash = Signature.prototype.toHash;
OnePassSignature.prototype.toSign = Signature.prototype.toSign;
OnePassSignature.prototype.calculateTrailer = function(...args) {
return stream.fromAsync(async () => (await this.correspondingSig).calculateTrailer(...args));
return stream.fromAsync(async () => Signature.prototype.calculateTrailer.apply(await this.correspondingSig, args));
};
OnePassSignature.prototype.verify = async function() {