Skip to content

Commit

Permalink
fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
htrgouvea committed Dec 4, 2024
1 parent afb13c8 commit f62dc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Spellbook/Crypto/JWT_Content.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package Spellbook::Crypto::JWT_Content {
);

if ($data) {
my ($header_b64, $payload_b64, $signature_b64) = split(/\./, $data);
my ($header_b64, $payload_b64, $signature_b64) = split(/\./x, $data);

if ($header_b64 && $payload_b64 && $signature_b64) {
my $header = decode_base64($header_b64);
Expand Down

0 comments on commit f62dc12

Please sign in to comment.