Update StatusController, unescape slashes in json response

pull/2587/head
Daniel Supernault 4 years ago
parent 6d078377f1
commit 2538673a7b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -282,7 +282,7 @@ class StatusController extends Controller
$resource = new Fractal\Resource\Item($status, new Note());
$res = $fractal->createData($resource)->toArray();
return response()->json($res['data'], 200, ['Content-Type' => 'application/activity+json'], JSON_PRETTY_PRINT);
return response()->json($res['data'], 200, ['Content-Type' => 'application/activity+json'], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
}
public function edit(Request $request, $username, $id)

Loading…
Cancel
Save