Skip to content

Commit 331b7bc

Browse files
santiagoaguiarjfromaniello
authored andcommitted
Fixed exp value when noTimestamp is required.
1 parent 91417dd commit 331b7bc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
2424
header[k] = options.header[k];
2525
});
2626
}
27-
27+
28+
var timestamp = Math.floor(Date.now() / 1000);
2829
if (!options.noTimestamp) {
29-
payload.iat = Math.floor(Date.now() / 1000);
30+
payload.iat = timestamp;
3031
}
3132

3233
if (options.expiresInMinutes) {
3334
var ms = options.expiresInMinutes * 60;
34-
payload.exp = payload.iat + ms;
35+
payload.exp = timestamp + ms;
3536
}
3637

3738
if (options.audience)

0 commit comments

Comments
 (0)