Merge pull request #1853 from pixelfed/staging

Fixes #1852
pull/1864/head
daniel 6 years ago committed by GitHub
commit b10295a17b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -193,11 +193,11 @@ class BaseApiController extends Controller
]);
}
public function showTempMedia(Request $request, int $profileId, $mediaId, $timestamp)
public function showTempMedia(Request $request, $profileId, $mediaId, $timestamp)
{
abort_if(!$request->user(), 403);
abort_if(!$request->hasValidSignature(), 404);
abort_if(Auth::user()->profile_id !== $profileId, 404);
abort_if(Auth::user()->profile_id != $profileId, 404);
$media = Media::whereProfileId(Auth::user()->profile_id)->findOrFail($mediaId);
$path = storage_path('app/'.$media->media_path);
return response()->file($path);

Loading…
Cancel
Save