Skip to content

Commit 38ef964

Browse files
committed
Merge pull request jsonwebtoken#34 from tlynn/patch-1
Make the value of "sub" a string, per draft RFC.
2 parents c7741ad + f7744c3 commit 38ef964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213

214214
loadFromStorage(function (jwt) {
215215
tokenEditor.setValue(
216-
jwt || 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjEyMzQ1Njc4OTAsIm5hbWUiOiJKb2huIERvZSIsImFkbWluIjp0cnVlfQ.eoaDVGTClRdfxUZXiPs3f8FmJDkDE_VCQFXqKxpLsts'
216+
jwt || 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.eoaDVGTClRdfxUZXiPs3f8FmJDkDE_VCQFXqKxpLsts'
217217
);
218218

219219
});

0 commit comments

Comments
 (0)