Fix #203 - try/catch around JSON parse
This commit is contained in:
		
					parent
					
						
							
								2b22c33039
							
						
					
				
			
			
				commit
				
					
						f92cb02b9b
					
				
			
		
					 1 changed files with 5 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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;
 | 
			
		||||
    }
 | 
			
		||||
  }]
 | 
			
		||||
});
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue