Skip to content
Snippets Groups Projects
Commit 71ffb5a7 authored by Tania Fecheta's avatar Tania Fecheta
Browse files

fix(client): cover case of no content-type

parent fb7046b3
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,8 @@ import endpoint from './endpoint'
import getToken from './token'
const parse = response => {
if (response.headers.get('content-type').includes('application/json')) {
const contentType = response.headers.get('content-type')
if (contentType && contentType.includes('application/json')) {
return response.json()
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment