From 3ebc85e55f85f1063309332886a25481f33cb155 Mon Sep 17 00:00:00 2001 From: Thomas Leitner Date: Mon, 13 Apr 2015 21:27:32 +0200 Subject: [PATCH] Crypt filter EFF key should have StmF value as default, not StrF This fixes the problem. --- src/core/crypto.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/crypto.js b/src/core/crypto.js index 1f13239fa..abb1d18fd 100644 --- a/src/core/crypto.js +++ b/src/core/crypto.js @@ -1967,7 +1967,7 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() { this.cf = dict.get('CF'); this.stmf = dict.get('StmF') || identityName; this.strf = dict.get('StrF') || identityName; - this.eff = dict.get('EFF') || this.strf; + this.eff = dict.get('EFF') || this.stmf; } } @@ -2040,4 +2040,4 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() { }; return CipherTransformFactory; -})(); \ No newline at end of file +})();