django-request-viewer
django-request-viewer copied to clipboard
Fix StreamingHttpResponse issue
The viewer was trying to systematically access the content of the response and this was raising an issue when the response is a streaming http response.
Error Message:
AttributeError: This StreamingHttpResponse instance has no
content
attribute. Usestreaming_content
instead.