Skip to content

Commit

Permalink
Update meme count
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vd committed Sep 17, 2019
1 parent c44ce9d commit a35a8c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def multiple_posts(count):

return jsonify({
'memes': memes,
'count': count
'count': len(memes)
})


Expand Down Expand Up @@ -161,7 +161,7 @@ def multiple_posts_from_sub(subreddit, count):

return jsonify({
'memes': memes,
'count': count,
'count': len(memes),
'subreddit': subreddit
})

Expand Down

0 comments on commit a35a8c5

Please sign in to comment.