| 
...
 | 
...
 | 
@@ -364,10 +364,10 @@ class App { | 
| 
 | 
 | 
         http_response_code($http_code);
 | 
| 
 | 
 | 
 
 | 
| 
 | 
 | 
         if(is_array($data)){
 | 
| 
 | 
 | 
             @header("Content-Type:application/json; Charset=UTF-8");
 | 
| 
 | 
 | 
             @header("Content-Type:application/json; charset=UTF-8");
 | 
| 
 | 
 | 
             echo json_encode($data,JSON_UNESCAPED_UNICODE);
 | 
| 
 | 
 | 
         }else{
 | 
| 
 | 
 | 
             @header("Content-Type:text/html; Charset=UTF-8");
 | 
| 
 | 
 | 
             @header("Content-Type:text/html; charset=UTF-8");
 | 
| 
 | 
 | 
             echo $data;
 | 
| 
 | 
 | 
         }
 | 
| 
 | 
 | 
     }
 | 
...
 | 
...
 | 
 |