Skip to content

Commit

Permalink
Merge pull request #83 from srikanthlogic/lintfixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
srikanthlogic authored Dec 22, 2024
2 parents 57f66b4 + 7c27e5c commit ef63392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ router.get('/apps/:appId/reviews', function (req, res, next) {
const opts = Object.assign({ appId: req.params.appId, country: req.query.country, num: parseInt(req.query.num) || 100 }, req.query);

const includeUserData = req.query.userdata === 'true';
const includeReplies = req.query.replies == 'true';
const includeReplies = req.query.replies === 'true';

const processReviews = (reviews, includeUserData, includeReplies) => {
const sanitizeReplyText = (text, userName) => {
Expand Down

0 comments on commit ef63392

Please sign in to comment.