Skip to content

Commit

Permalink
Merge pull request #2803 from marimeireles/issues/2802/1
Browse files Browse the repository at this point in the history
Fixes #2802 - Requests for a body instead of a body_html
  • Loading branch information
karlcow authored Feb 14, 2019
2 parents 63c294b + 4c33cff commit aedd29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webcompat/api/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def proxy_issues():
elif params.get('q'):
abort(404)
path = 'repos/{0}'.format(ISSUES_PATH)
return api_request('get', path, params=params, mime_type=JSON_MIME_HTML)
return api_request('get', path, params=params)


@api.route('/issues/<username>/<parameter>')
Expand Down

0 comments on commit aedd29d

Please sign in to comment.