1
0
Эх сурвалжийг харах

Update StatusController, unescape slashes in json response

Daniel Supernault 4 жил өмнө
parent
commit
2538673a7b

+ 1 - 1
app/Http/Controllers/StatusController.php

@@ -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)