mirror of
https://github.com/gchq/CyberChef
synced 2025-12-18 09:13:43 +00:00
Fix bug: baking error did not reset baking status
This commit is contained in:
@@ -124,14 +124,14 @@ App.prototype.bake = async function(step) {
|
|||||||
this.handleError(err);
|
this.handleError(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.setBakingStatus(false);
|
||||||
|
|
||||||
if (!response) return;
|
if (!response) return;
|
||||||
|
|
||||||
if (response.error) {
|
if (response.error) {
|
||||||
this.handleError(response.error);
|
this.handleError(response.error);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setBakingStatus(false);
|
|
||||||
|
|
||||||
this.options = response.options;
|
this.options = response.options;
|
||||||
this.dishStr = response.type === "html" ? Utils.stripHtmlTags(response.result, true) : response.result;
|
this.dishStr = response.type === "html" ? Utils.stripHtmlTags(response.result, true) : response.result;
|
||||||
this.progress = response.progress;
|
this.progress = response.progress;
|
||||||
|
|||||||
Reference in New Issue
Block a user