Add missing closing double-quote in filename header for remuxes

This commit is contained in:
Yassine Imounachen 2019-10-31 13:41:16 +01:00 committed by GitHub
parent 7020c7516f
commit 8645ffd08a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -222,7 +222,7 @@ class DownloadController extends BaseController
return $response->withHeader(
'Content-Disposition',
'attachment; filename="' . $this->video->getFileNameWithExtension('mkv')
'attachment; filename="' . $this->video->getFileNameWithExtension('mkv') . '"'
);
}