google / google/jsontoken

Wrong exception message in SignedTokenAudienceChecker class

Open
#7 0 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.