mirror of
https://github.com/gchq/CyberChef
synced 2025-12-14 23:33:25 +00:00
Input and Output character encodings are now stored in the URL, allowing for accuate deeplinking
This commit is contained in:
@@ -138,9 +138,14 @@ class ControlsWaiter {
|
||||
}
|
||||
}
|
||||
|
||||
const inputChrEnc = this.manager.input.inputChrEnc;
|
||||
const outputChrEnc = this.manager.output.outputChrEnc;
|
||||
|
||||
const params = [
|
||||
includeRecipe ? ["recipe", recipeStr] : undefined,
|
||||
includeInput && input.length ? ["input", Utils.escapeHtml(input)] : undefined,
|
||||
inputChrEnc !== 0 ? ["ienc", inputChrEnc] : undefined,
|
||||
outputChrEnc !== 0 ? ["oenc", outputChrEnc] : undefined
|
||||
];
|
||||
|
||||
const hash = params
|
||||
|
||||
Reference in New Issue
Block a user