Fixed #8566 - PDF files displaying as ascii instead of downloading

This commit is contained in:
snipe 2020-10-21 13:32:46 -07:00
parent a6d0209e93
commit 5ae65d5329

View file

@ -143,11 +143,10 @@ class LicenseFilesController extends Controller
// We have to override the URL stuff here, since local defaults in Laravel's Flysystem
// won't work, as they're not accessible via the web
if (config('filesystems.default') == 'local') {
\Log::debug('The private filesystem is local');
return Response::make(Storage::get($file));
return Storage::download($file);
} else {
if ($download != 'true') {
\Log::debug('display the file');
if ($contents = file_get_contents(Storage::url($file))) {
return Response::make(Storage::url($file)->header('Content-Type', mime_content_type($file)));
}