jaredhanson / jaredhanson/oauth2orize
Maybe a typo in the readme
Open
- Dominant language
- JavaScript
- Stars
- 3.5k
- Forks
- 472
- PR merge metrics
- No merged PRs in 30d
Description
This line:
```
if (!client.redirectUri != redirectURI) { return done(null, false); }
```
should be
```
if (client.redirectUri != redirectURI) { return done(null, false); }
```
because we are failing if the url is **not** the same.
Contributor guide
Research direction
Find the README line containing the shown redirectUri condition and compare it with the issue's proposed wording. Update the documentation so the snippet matches the requested condition, then review the rendered README to confirm the corrected example is displayed.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 38/100