Merge branch 'bug-substitute'

This commit is contained in:
n1474335 2017-08-25 11:50:07 +00:00
commit a5ed824674
1 changed files with 2 additions and 2 deletions

View File

@ -766,8 +766,8 @@ const Cipher = {
* @returns {string}
*/
runSubstitute: function (input, args) {
let plaintext = Utils.expandAlphRange(args[0]).join(),
ciphertext = Utils.expandAlphRange(args[1]).join(),
let plaintext = Utils.expandAlphRange(args[0]).join(""),
ciphertext = Utils.expandAlphRange(args[1]).join(""),
output = "",
index = -1;