mirror of
https://github.com/gchq/CyberChef
synced 2024-12-26 04:23:10 +00:00
Merge branch 'bug-substitute'
This commit is contained in:
commit
a5ed824674
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue