We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36779b4 commit 19f216fCopy full SHA for 19f216f
resources/lib/UnitySite.php
@@ -71,7 +71,7 @@ private static function throwableToArray(Throwable $t): array
71
$output = [
72
"type" => gettype($t),
73
"msg" => $t->getMessage(),
74
- "trace" => str_replace($t->getTrace(), "\\", "/"), // backslash is bad for json
+ "trace" => str_replace("\\", "/", $t->getTrace()), // backslash is bad for json
75
];
76
$previous = $t->getPrevious();
77
if (!is_null($previous)) {
0 commit comments