Skip to content

Commit 6cdce14

Browse files
authored
add JSON_UNESCAPED_UNICODE
1 parent bff39ec commit 6cdce14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/Common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected static function safeJson($jsonData, $asArray = false)
8181
$safeJsonData[$key] = $value;
8282
}
8383
}
84-
return $asArray ? $safeJsonData : json_encode($safeJsonData);
84+
return $asArray ? $safeJsonData : json_encode($safeJsonData, JSON_UNESCAPED_UNICODE);
8585
}
8686

8787
}

0 commit comments

Comments
 (0)