Skip to content

Commit 7f7d76e

Browse files
committed
fix wrong error when setting expiration on non-object payload. closes #153
1 parent ae13271 commit 7f7d76e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ JWT.sign = function(payload, secretOrPrivateKey, options, callback) {
103103
options.expiresInSeconds;
104104

105105
payload.exp = timestamp + expiresInSeconds;
106-
} else if (typeof options.expiresIn !== 'undefined') {
106+
} else if (typeof options.expiresIn !== 'undefined' && typeof payload === 'object') {
107107
payload.exp = timespan(options.expiresIn);
108108
if (typeof payload.exp === 'undefined') {
109109
throw new Error('"expiresIn" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60');

0 commit comments

Comments
 (0)