This commit is contained in:
john19696 2022-09-23 11:38:15 +01:00
parent be97a0062e
commit 312be4772c
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class GenerateAllHashes extends Operation {
}
}
// output the values base on the args: length & names
if (length === "All" || value.length === parseInt(length)) {
if (length === "All" || value.length === parseInt(length, 10)) {
if (names) {
output += hash.name + ":" + " ".repeat(13-hash.name.length);
}