gzip issue

This commit is contained in:
Clemens 2016-07-13 20:44:35 +02:00
parent 121079934e
commit baac6c4693

View File

@ -123,6 +123,7 @@ export function update_content(flow, file) {
file = new Blob([file], {type: 'plain/text'}) file = new Blob([file], {type: 'plain/text'})
body.append('file', file) body.append('file', file)
fetchApi(`/flows/${flow.id}/response/content`, {method: 'post', body} ) fetchApi(`/flows/${flow.id}/response/content`, {method: 'post', body} )
update(flow, {response: {headers: [['Content-Encoding', '']]} } )
return { type: REQUEST_ACTION } return { type: REQUEST_ACTION }
} }