Browse Source

Crypt filter EFF key should have StmF value as default, not StrF

This fixes the problem.
Thomas Leitner 10 years ago
parent
commit
3ebc85e55f
  1. 2
      src/core/crypto.js

2
src/core/crypto.js

@ -1967,7 +1967,7 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() {
this.cf = dict.get('CF'); this.cf = dict.get('CF');
this.stmf = dict.get('StmF') || identityName; this.stmf = dict.get('StmF') || identityName;
this.strf = dict.get('StrF') || identityName; this.strf = dict.get('StrF') || identityName;
this.eff = dict.get('EFF') || this.strf; this.eff = dict.get('EFF') || this.stmf;
} }
} }

Loading…
Cancel
Save