Skip to content

Commit dbebf4d

Browse files
author
Justin Richer
committed
rolled back hack around bug in JAXRS library
1 parent 3110bed commit dbebf4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/authlete/jaxrs/server/api/AuthorizationDecisionHandlerSpiImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public AuthorizationDecisionHandlerSpiImpl(MultivaluedMap<String, String> parame
100100
}
101101

102102
// TODO: this should be passing in seconds to the API but we currently need to pass in milliseconds to get the correct behavior
103-
mUserAuthenticatedAt = userAuthenticatedAt.getTime(); // / 1000L;
103+
mUserAuthenticatedAt = userAuthenticatedAt.getTime() / 1000L;
104104

105105
// The subject (= unique identifier) of the end-user.
106106
mUserSubject = mUser.getSubject();

0 commit comments

Comments
 (0)