Wrong exception message in SignedTokenAudienceChecker class
Open
- Dominant language
- Java
- Stars
- 21
- Forks
- 16
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 2
Description
```
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 `mariuszl...@gmail.com` on 11 May 2014 at 7:59
Contributor guide
Assessment
This issue has not been assessed yet.