We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134931c commit 453c262Copy full SHA for 453c262
minisign.js
@@ -50,7 +50,7 @@ function parseSignature(sig_buf) {
50
sig_buf = sig_buf.subarray(trusted_header.byteLength);
51
52
// Read and skip trusted comment
53
- const trusted_comment_end = sig_bug.indexOf('\n');
+ const trusted_comment_end = sig_buf.indexOf('\n');
54
const trusted_comment = sig_buf.subarray(0, trusted_comment_end);
55
sig_buf = sig_buf.subarray(trusted_comment_end + 1);
56
@@ -70,7 +70,7 @@ function parseSignature(sig_buf) {
70
key_id: key_id,
71
signature: signature,
72
trusted_comment: trusted_comment,
73
- global_signature: global_signature,
+ global_signature: global_sig,
74
};
75
}
76
0 commit comments