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

This fixes the problem.
This commit is contained in:
Thomas Leitner 2015-04-13 21:27:32 +02:00
parent e4e9a2adea
commit 3ebc85e55f

View File

@ -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;
})();
})();