Fix #203 - try/catch around JSON parse
This commit is contained in:
		| @ -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; | ||||
|     } | ||||
|   }] | ||||
| }); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user