1
0
Fork 0
forked from mirror/pixelfed

Update IG Import Controller

This commit is contained in:
Daniel Supernault 2019-01-31 13:27:02 -07:00
parent 350d7e29b5
commit 3d9fb1b13a
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -124,7 +124,7 @@ trait Instagram
->firstOrFail(); ->firstOrFail();
$media = $request->file('media'); $media = $request->file('media');
$file = file_get_contents($media); $file = file_get_contents($media);
$json = json_decode($file, true); $json = json_decode($file, true, 5);
if(!$json || !isset($json['photos'])) { if(!$json || !isset($json['photos'])) {
return abort(500); return abort(500);
} }