Skip to content

Commit 8c2cb69

Browse files
authored
Merge pull request #26 from landrok/patch-3
Fix unescaped unicode encoding parameter
2 parents c17b55c + 098862c commit 8c2cb69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JSONRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function renderReport(Report $report)
5353
$issue["fingerprint"] = $fingerprint;
5454
}
5555

56-
$json = json_encode($issue, JSON_UNESCAPED_SLASHES, JSON_UNESCAPED_UNICODE);
56+
$json = json_encode($issue, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
5757
$writer->write($json);
5858
$writer->write(chr(0));
5959
}

0 commit comments

Comments
 (0)