Merge branch 'remastering' of https://git.steelants.cz/SImple-Home/PHP_SMART_HOME_V3 into remastering

This commit is contained in:
JonatanRek 2020-05-13 12:04:07 +02:00
commit 135338041a
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ class ApiController {
protected function response($data = [], $httpCode = '200'){
http_response_code($httpCode);
echo json_encode($data);
echo json_encode($data, JSON_UNESCAPED_UNICODE);
}
}