Fix desktop attachment compatibility

This commit is contained in:
Niels Andriesse 2021-03-02 11:05:40 +11:00
parent 7dee8b6507
commit aaa0d736ed
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class DotNetAPI : NSObject {
if isEncryptionRequired {
var encryptionKey = NSData()
var digest = NSData()
guard let encryptedAttachmentData = Cryptography.encryptAttachmentData(unencryptedAttachmentData, shouldPad: true, outKey: &encryptionKey, outDigest: &digest) else {
guard let encryptedAttachmentData = Cryptography.encryptAttachmentData(unencryptedAttachmentData, shouldPad: false, outKey: &encryptionKey, outDigest: &digest) else {
SNLog("Couldn't encrypt attachment.")
return seal.reject(Error.encryptionFailed)
}