You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 70 - there is
if (!Objects.equal(ourUri.getPath(), tokenUri.getPath())) {
throw new SignatureException("path in token URI (" + tokenUri.getAuthority() + ") is wrong");
}
while shoudl be
if (!Objects.equal(ourUri.getPath(), tokenUri.getPath())) {
throw new SignatureException("path in token URI (" + tokenUri.getPath() + ") is wrong");
}
Original issue reported on code.google.com by [email protected] on 11 May 2014 at 7:59
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 11 May 2014 at 7:59The text was updated successfully, but these errors were encountered: