mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 08:16:17 -04:00
Fixed a few small bugs
This commit is contained in:
parent
b3c52a8601
commit
559741fd07
1 changed files with 6 additions and 4 deletions
|
@ -214,7 +214,7 @@ class Magic {
|
|||
const testEnc = async op => {
|
||||
for (let i = 0; i < encodings.length; i++) {
|
||||
const conf = {
|
||||
op: "Encode text",
|
||||
op: op,
|
||||
args: [encodings[i]]
|
||||
},
|
||||
data = await this._runRecipe([conf], sample.buffer);
|
||||
|
@ -343,9 +343,11 @@ class Magic {
|
|||
const recipe = new Recipe(recipeConfig);
|
||||
try {
|
||||
await recipe.execute(dish, 0);
|
||||
} catch (err) {} // Ignore errors
|
||||
|
||||
return dish.get(Dish.ARRAY_BUFFER);
|
||||
return dish.get(Dish.ARRAY_BUFFER);
|
||||
} catch (err) {
|
||||
// If there are errors, return an empty buffer
|
||||
return new ArrayBuffer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue