Merge pull request #245 from yassineim/patch-1

Add missing closing double-quote in filename header for remuxes
This commit is contained in:
Pierre Rudloff 2019-11-06 14:00:07 +01:00 committed by GitHub
commit d0add4955d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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') . '"'
);
}