Skip to content

Commit

Permalink
Fixed previous ARC fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Dec 19, 2024
1 parent ab4c5e9 commit 1c52968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dkim/dkim-signer.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class DkimSigner extends MessageParser {
{},
signatureData,
{
instance: this.arc?.instance || 1, // ARC only
instance: 'instance' in this.arc && (this.arc.instance || 1), // ARC only
algorithm,
canonicalization: this.getCanonicalization(signatureData).canonicalization,

Expand Down

0 comments on commit 1c52968

Please sign in to comment.