mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 16:51:31 -04:00
Added more tests, fixed length count bug and IO clearance bug
This commit is contained in:
parent
8c0e23e196
commit
819e4a574c
6 changed files with 277 additions and 22 deletions
|
@ -231,9 +231,13 @@ class OutputWaiter {
|
|||
*/
|
||||
async setOutput(data, force=false) {
|
||||
// Don't do anything if the output hasn't changed
|
||||
if (!force && data === this.currentOutputCache) return;
|
||||
this.currentOutputCache = data;
|
||||
if (!force && data === this.currentOutputCache) {
|
||||
this.manager.controls.hideStaleIndicator();
|
||||
this.toggleLoader(false);
|
||||
return;
|
||||
}
|
||||
|
||||
this.currentOutputCache = data;
|
||||
this.toggleLoader(true);
|
||||
|
||||
// If data is an ArrayBuffer, convert to a string in the correct character encoding
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue