Fix #203 - try/catch around JSON parse

lolsob-rspec
Eugen Rochko 2016-12-11 23:18:41 +01:00
parent 44c725fd17
commit 549633aa0e
1 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@ export default getState => axios.create({
},
transformResponse: [function (data) {
return JSON.parse(data);
try {
return JSON.parse(data);
} catch(Exception) {
return data;
}
}]
});