Skip to content

Commit

Permalink
Fix issue when runninng hex search
Browse files Browse the repository at this point in the history
  • Loading branch information
as0ler authored and trufae committed Nov 17, 2023
1 parent 6d1b12e commit 28c0602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function _toPairs(hex: string): string {
}
const pairs = [];
for (let i = 0; i !== hex.length; i += 2) {
pairs.push(hex.substring(i, 2));
pairs.push(hex.substring(i, i + 2));
}
return pairs.join(' ').toLowerCase();
}
Expand Down

0 comments on commit 28c0602

Please sign in to comment.